JavaScript RegExp 对象

Izellah ·
更新时间:2024-11-10
· 663 次阅读

JavaScript RegExp 对象

RegExp:是正则表达式(regular expression)的简写。

完整 RegExp 对象参考手册

请查看我们的
实例 2

全文查找 "is"

var str="Is this all there is?"; var patt1=/is/g;

以下标记的文本是获得的匹配的表达式:

Is this all there is?

实例 3

全文查找和不区分大小写搜索 "is"

var str="Is this all there is?"; var patt1=/is/gi;

以下 标记的文本是获得的匹配的表达式:

Is this all there is?

test()

test()方法搜索字符串指定的值,根据结果并返回真或假。

下面的示例是从字符串中搜索字符 "e" :

实例 var patt1=new RegExp("e"); document.write(patt1.test("The best things in life are free"));

由于该字符串中存在字母 "e",以上代码的输出将是:

true

当使用构造函数创造正则对象时,需要常规的字符转义规则(在前面加反斜杠 ) 实例 var re = new RegExp("\w+");

exec()

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

下面的示例是从字符串中搜索字符 "e" :

实例 1 var patt1=new RegExp("e"); document.write(patt1.exec("The best things in life are free"));

由于该字符串中存在字母 "e",以上代码的输出将是:

e



JavaScript

需要 登录 后方可回复, 如果你还没有账号请 注册新账号