javascript字符串替换replace的使用
作者:bea
在很多情况下我们都需要替换字符串里的字符,在Javascript中我们使用的是string对象的replace,下面的例子讲解string对象replace方法的具体使用方法。 replace:返回根据正则表达式进行文字替换后的字符串的复制。 1、平时常用到的replace function ReplaceDemo(){ var r, re; // 声明变量。 var ss = "The man hit the ball with the bat.\n&
在很多情况下我们都需要替换字符串里的字符,在Javascript中我们使用的是string对象的replace,下面的例子讲解string对象replace方法的具体使用方法。
replace:返回根据正则表达式进行文字替换后的字符串的复制。
1、平时常用到的replace
function ReplaceDemo(){
var r, re; // 声明变量。
var ss = "The man hit the ball with the bat.\n";
ss += "while the fielder caught the ball with the glove.";
re = /The/g; // 创建正则表达式模式。
r = ss.replace(re, "A"); // 用 "A" 替换 "The"。
return(r); // 返回替换后的字符串。
}
ReplaceDemo(); //A man hit the ball with the bat. while the fielder caught the ball with the glove.
2、替换模式中的子表达式
function ReplaceDemo(){
var r, re; // 声明变量。
var ss = "The rain in Spain falls mainly in the plain.";
re = /(\S+)(\s+)(\S+)/g; // 创建正则表达式模式。
r = ss.replace(re, "$3$2$1"); // 交换每一对单词。
return(r); // 返回结果字符串。
}
document.write(ReplaceDemo()); //rain The Spain in mainly falls the in plain.
匹配正则的项:The rain,in Spain,falls mainly,in the;执行ss.replace(re, "$3$2$1")操作,完成单词位置的交换
$1匹配的是第一个(\S+)
$2匹配的是(\s+)
$3匹配的是第二个(\S+)
3、replace第二个参数是function时
function f2c(s){
var test = /(\d+(\.\d*)?)F\b/g; // 初始化模式。
return(s.replace(test,function($0,$1,$2){return((($1-32)) + "C");}));
}
f2c("Water boils at 212F 3F .2F 2.2F .2");//Water boils at 180C -29C .-30C -29.8C .2
$0匹配 212F,3F,.2F,2.2F
$1匹配 212,3,.2,2.2
$2匹配 最后一个.2
字符串的替换不只是在Javascript中常用到,其他的变成语言中也都是一样的重要。但是学好了Javascript中的字符串替换,其他语言的也都基本能理解了。 有用 | 无用
replace:返回根据正则表达式进行文字替换后的字符串的复制。
1、平时常用到的replace
function ReplaceDemo(){
var r, re; // 声明变量。
var ss = "The man hit the ball with the bat.\n";
ss += "while the fielder caught the ball with the glove.";
re = /The/g; // 创建正则表达式模式。
r = ss.replace(re, "A"); // 用 "A" 替换 "The"。
return(r); // 返回替换后的字符串。
}
ReplaceDemo(); //A man hit the ball with the bat. while the fielder caught the ball with the glove.
2、替换模式中的子表达式
function ReplaceDemo(){
var r, re; // 声明变量。
var ss = "The rain in Spain falls mainly in the plain.";
re = /(\S+)(\s+)(\S+)/g; // 创建正则表达式模式。
r = ss.replace(re, "$3$2$1"); // 交换每一对单词。
return(r); // 返回结果字符串。
}
document.write(ReplaceDemo()); //rain The Spain in mainly falls the in plain.
匹配正则的项:The rain,in Spain,falls mainly,in the;执行ss.replace(re, "$3$2$1")操作,完成单词位置的交换
$1匹配的是第一个(\S+)
$2匹配的是(\s+)
$3匹配的是第二个(\S+)
3、replace第二个参数是function时
function f2c(s){
var test = /(\d+(\.\d*)?)F\b/g; // 初始化模式。
return(s.replace(test,function($0,$1,$2){return((($1-32)) + "C");}));
}
f2c("Water boils at 212F 3F .2F 2.2F .2");//Water boils at 180C -29C .-30C -29.8C .2
$0匹配 212F,3F,.2F,2.2F
$1匹配 212,3,.2,2.2
$2匹配 最后一个.2
字符串的替换不只是在Javascript中常用到,其他的变成语言中也都是一样的重要。但是学好了Javascript中的字符串替换,其他语言的也都基本能理解了。 有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- Jquery滑动鼠标图片放大缩小效果
- 导航菜单地址与URL相同时js实现高亮
- Jquery中setInterval、setTimeout注意事项
- Windows系统上安装Node.js模块的方法
- js实现最简单的图片切换效果
- 点击超链接禁止跳到顶部解决办法
- web脚本语言与编程语言的就业趋势
- JS实现右下脚弹出模仿MSN或QQ消息提示
- Javascript实现复选框全选
- Javascript验证用户提交的表单
- Javascript设置和读取cookie中的值
- 快速提高页面加载速度的完美方法
- 常用的一些Javascript功能总结
- Ajax实现验证用户填写的登录信息
- javascript操作HTML标签select
- 非常好的一个Javascript下拉菜单
- javascript实现页面关闭前提示是否关闭
- 详细说明常用的Javascript函数(json)
- Javascript实现百分比进度条加载flash