JS (remove the front and back spaces or remove all spaces) usage

Source: Internet
Author: User

1. Remove all spaces before and after the string:

The code is as follows:

12         return""3  }

Description:

If you use jquery to directly use the $. Trim(str) method, str indicates that you want to remove all the spaces before and after the string.

2, remove all the spaces in the string (including the middle space, you need to set the 2nd parameter is: g)

The code is as follows:

1 function Trim (str,is_global) {2         varresult;3result = Str.replace (/(^\s+) | ( \s+$)/g,"");4         if(is_global.tolowercase () = ="g") {5result = Result.replace (/\s/g,"");6         }7         returnresult;8}

Original link: http://djkin.iteye.com/blog/1767048

JS (remove the front and back spaces or remove all spaces) usage

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.