The Replace method in JavaScript

Source: Internet
Author: User
Tags expression regular expression
1 The first time found in JavaScript replace () method if directly with Str.replace ("-", "!") Only the first matching character will be replaced.
2 and Str.replace (/\-/g, "!") You can replace all the matching characters (G is the global flag).
3
4
5replace ()
6The replace () method returns the string so results when you replace text matching its-argument
7 (a regular expression) with the text of the second argument (a string).
8If the G (global) flag is isn't set in the regular expression declaration.
9occurrence of the pattern. For example,
10
11var s = "Hello." Regexps are fun. "; s = S.replace (/\./, "!"); Replace the period with a exclamation pointalert (s);
12
13produces the string "hello! Regexps are fun. " Including the G flag would cause the interpreter to
14perform a global replace, finding and replacing every matching substring. For example,
15
16var s = "Hello." Regexps are fun. "; s = S.replace (/\./g, "!"); Replace all periods with exclamation pointsalert (s);
17
18yields This result: "hello! Regexps are fun! "



Related Article

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.