简体   繁体   中英

string manipulation in JavaScript: retrieve the matched text and then replace the matched text

JavaScript text manipulation

I need to make little manipulation in the string. I need to retrieve the matched text and then replace the matched text. Something like this

Replace("@anytext@",@anytext@)

My string can have @anytext@ any where in string multiple times.

This is not jQuery, but regular JavaScript

var stringy = 'bob john';

stringy = stringy.replace(/bob/g, 'mary');

You can make the second argument to replace a function:

str = "testing one two three";
str = str.replace(/one/g, function(match) {

    return match.toUpperCase();
});

That replaces the "one" with "ONE". The first argument to the function is the matched result from the regex. The return value of the function is what to replace the match with.

If you have any capturing groups in your regex, they'll be additional arguments to the function:

str = "testing one two three";
str = str.replace(/(on)(e)/g, function(match, group0, group1) {

    return match.toUpperCase();
});

That does exactly what the first one does, but if you wanted to, you could see what was in the capturing groups. In that example, group0 would be "on" and group1 would be "e".

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM