JS Replace all replaces __JS

Source: Internet
Author: User

Answer1=answer1.replace (New RegExp ('; ', ' G '), '; '); Replace the separator in the blank with the uniform ";" (replace All, where the ' G ' parameter means replace All)

Analytical:

The first time you found the Replace () method in JavaScript is to use the Str.replace ("-", "!") directly. Only the first matching character will be replaced.
and Str.replace (/\-/g, "!") You can replace all the matching characters (G is the global flag).

So you can use the following methods:
String.Replace (/reallydo/g, replacewith);
String.Replace (New RegExp (Reallydo, ' G '), replacewith);

String: An expression containing a substring to override.
Reallydo: the substring being searched.
ReplaceWith: a substring to replace.


Turn from: http://blog.sina.com.cn/s/blog_5ffd143b0100hvrz.html

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.