JS replaces all specified characters (implementation code) in a string _javascript tips

Source: Internet
Author: User

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).

Replace ()

The Replace () method returns the string so results when you replace text matching its-argument
(a regular expression) with the text of the second argument (a string).
If the G (global) flag is not set in the regular expression declaration, this method replaces only the
Occurrence of the pattern. For example,

var s = "Hello." Regexps are fun. "; s = S.replace (/\./,"! "); Replace the period with a exclamation pointalert (s);

Produces the string "hello! Regexps are fun. " Including the G flag would cause the interpreter to
Perform a global replace, finding and replacing every matching substring. For example,

var s = "Hello." Regexps are fun. "; s = S.replace (/\./g,"! "); Replace all periods with exclamation pointsalert (s);

Yields this result: "hello! Regexps are fun! "

So there are several ways to do this:

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.

JS Code

<script type= "Text/javascript" > 
String.prototype.replaceAll = function (Reallydo, replacewith, IgnoreCase) { 
  if (! RegExp.prototype.isPrototypeOf (Reallydo)) {return 
    this.replace (new RegExp Reallydo, ignoreCase? "GI": "G")), replacewith); 
  } else {return 
    this.replace (Reallydo, replacewith); 
  } 
} 
</script> 

The above JS replacement string of all the specified characters (implementation code) is a small series to share all the content, hope to give you a reference, but also hope that we support the cloud-dwelling 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.