JavaScript 正则表达式(RegExp)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 正则表达式(RegExp)相关的知识,希望对你有一定的参考价值。

什么是RegExp

RegExp是一种模式用来描述要检索的内容。

定义RegExp

1 var patt = new RegExp("模式");

RegExp对象的方法

RegExp对象有3个方法:test()、exec()、compile()

test()

检索字符串中指定的值。返回值为true或者false

1 var patt = new RegExp("e");
2 document.write(patt.test("I am a student");
3 //返回值
4 true

 

exec()

检索字符串中指定的值。返回值为找到的值,如果没有发现匹配,返回null。

1 var patt = new RegExp("e");
2 document.write(patt.exec("I am a student.);
3 //返回值
4 e

可以设定第二个参数来设定检索

g:全局检索

i:执行对大小写不敏感的匹配

m:执行多行匹配

1 var patt = new RegExp("e", "g");
2 do {
3     result = patt.exec("I am a student in the university");
4     document.write(result);
5 } while (result != null);
6 //执行结果
7 eeenull

compile()

用于改变RegExp。

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

1 var patt = new RegExp("e");
2 document.write(patt.test("I am a student");
3 patt.compile("b");
4 document.write(patt.test("I am a student");
5 //输出结果
6 truefalse

 

 

 总结自:http://www.w3school.com.cn/js/js_obj_regexp.asp

以上是关于JavaScript 正则表达式(RegExp)的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript初识正则-RegExp

javascript JavaScript regexp正则表达式匹配

JavaScript RegExp 身份证账号密码email正则

JavaScript RegExp 身份证账号密码email正则

JavaScript 学习-21.正则表达式 RegExp 对象

JavaScript 正则表达式(RegExp)