6. JavaScript 正则相关函数

test() 方法检索字符串中的指定值。返回值是 true 或 false。

var patt1=/e/;
document.write(patt1.test("The best things in life are free")); 
//输出:true

exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null。

var patt1=/e/;
document.write(patt1.exec("The best things in life are free")); 
//输出:e

compile() 既可以改变检索模式,也可以添加或删除第二个参数。

var patt1=/e/;
document.write(patt1.exec("The best things in life are free"));
patt1.compile("d");
document.write(patt1.exec("The best things in life are free"));
//输出:ed
评论

0 条评论