ECMAScript提供了replace()方法。这个方法接收两个参数,第一个参数可以是一个RegExp对象或者一个字符串,第二个参数可以是一个字符串或者一个函数。现在我们来详细讲解可能出现的几种情况。
1 var text = 'cat, bat, sat, fat';
2 // 在字符串中找到at,并将at替换为ond,只替换一次
3 var result = text.replace('at', 'ond');
4 // "cond, bat, sat, fat"
5 console.log(result);
我们可以发现上面这种情况只替换了第一个at,如果想要替换全部at,就必须使用RegExp对象。
1 var text = 'cat, bat, sat, fat';
2 // 使用/at/g 在全局中匹配at,并用ond进行替换
3 var result = text.replace(/at/g, 'ond');
4 // cond, bond, sond, fond
5 console.log(result);
RegExp具有9个用于存储捕获组的属性。$1, $2...$9,分别用于存储第一到九个匹配的捕获组。我们可以访问这些属性,来获取存储的值。
1 var text = 'cat, bat, sat, fat';
2 // 使用/(.at)/g 括号为捕获组,此时只有一个,因此所匹配的值存放在$1中
3 var result = text.replace(/(.at)/g, '$($1)');
4 // $(cat), $(bat), $(sat), $(fat)
5 console.log(result);
1 var text = 'cat, bat, sat, fat';
2 // 使用/at/g 匹配字符串中所有的at,并将其替换为ond,
3 // 函数的参数分别为:当前匹配的字符,当前匹配字符的位置,原始字符串
4 var result = text.replace(/at/g, function(match, pos, originalText) {
5 console.log(match + ' ' + pos);
6 return 'ond'
7 });
8 console.log(result);
9 // 输出
10 /*
11 at 1 dd.html:12:9
12 at 6 dd.html:12:9
13 at 11 dd.html:12:9
14 at 16 dd.html:12:9
15 cond, bond, sond, fond dd.html:16:5
16 */
1 var text = 'cat, bat, sat, fat';
2 // 使用/(.at)/g 匹配字符串中所有的at,并将其替换为ond,
3 // 当正则表达式中存在捕获组时,函数的参数一次为:模式匹配项,第一个捕获组的匹配项,
4 // 第二个捕获组的匹配项...匹配项在字符串中的位置,原始字符串
5 var result = text.replace(/.(at)/g, function() {
6 console.log(arguments[0] + ' ' + arguments[1] + ' ' + arguments[2]);
7 return 'ond'
8 });
9 console.log(result);
10 // 输出
11 /*
12 cat at 1
13 bat at 6
14 sat at 11
15 fat at 16
16 cond, bond, sond, fond
17 */
以上为replace方法的所有可以使用的情况,下面我们使用replace和正则表达式共同实现字符串trim方法。
1 (function(myFrame) {
2 myFrame.trim = function(str) {
3 // ' hello world '
4 return str.replace(/(^\s*)|(\s*$)/g, '');
5 };
6 window.myFrame = myFrame;
7 })(window.myFrame || {});
8 // 测试
9 var str = ' hello world '
10 console.log(str.length); // 15
11 console.log(myFrame.trim(str).length); // 11