replace 方法
时间:2007-12-27 来源:不详 作者:林子
r = ss.replace(re, "$3$2$1");//
交换每一对单词。
return(r); //
返回结果字符串。
} dedecms.com
下面的示例(在 JScript 5.5 及更新版本中执行)执行的是从华氏到摄氏的转换,它演示了使用函数作为 replaceText。要想知道该函数是如何工作的,传递一个包含数值的字符串,数值后要紧跟 "F" (例如 "Water boils at 212")。 copyright dedecms
function f2c(s) { var test = /(\d (\.\d*)?)F\b/g; //
初始化模式。return(s.replace
(test,
function($0,$1,$2) {
return((($1-32) * 5/9) "C");
}
)
);
}
document.write(f2c("Water freezes at 32F and boils at 212F."));
织梦好,好织梦
上一篇:search 方法 下一篇:reverse 方法
文章评论
共有位Admini5网友发表了评论 查看完整内容