Implement the replaceAll () function of the String object in JavaScript, the string. replace Function

Source: Internet
Author: User

Implement the replaceAll () function of the String object in JavaScript, the string. replace Function

In the JavaScript scripting language, it is certainly no stranger to using the replace () function for String objects, but there is no such method as the replaceAll () method in Java, but in use, it will inevitably be used. In this case, only our programmers can do it themselves !!

/*** Author Joyce. luo 10:19:54 prepared in 2015.01.05 * JavaScript language Methods: replaceAll (), based on the replace () method to realize * @ param {} rgExp The need to replace the string or regular object * @ param {} replaceText The string matching to replace the string * @ return {} Returns a new string replacement */String. prototype. replaceAll = function (rgExp, replaceText) {return this. replace (new RegExp (rgExp, 'GM '), replaceText );};

The effect is simple and clear .....

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.