How to replace JavaScript regular expressions with spaces

Source: Internet
Author: User
This article mainly introduces how to replace regular expressions with spaces in Javascript, compares and analyzes deletion techniques for full-width and half-width spaces with examples, and describes how to replace regular expressions, for more information about how to replace and remove spaces with JavaScript regular expressions, see the next article. This article compares and analyzes how to delete spaces between full-width and half-width fields with examples, how to Use replace regular expression replacement. For more information, see

The example in this article describes how to replace JavaScript regular expressions with spaces. We will share this with you for your reference. The details are as follows:

After searching online for a long time, I found that few of them are useful. Back up your own data and try again later.

// Remove the left space; function ltrim (s) {return s. replace (/^/s */, "") ;}// remove right space; function rtrim (s) {return s. replace (// s * $/, "");} // left and right spaces; function trim (s) {return rtrim (ltrim (s ));}

If the halfwidth and fullwidth spaces are removed, replace/s with ["" | ""]

// Remove the left space; function ltrim (s) {return s. replace (/^ ["" | ""] */, "") ;}// remove right space; function rtrim (s) {return s. replace (/["" | ""] * $/, "");} // left and right spaces; function trim (s) {return rtrim (ltrim (s ));}

The above is a detailed description of how to replace JavaScript regular expressions with spaces. For more information, see other related articles in the first PHP community!

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.