菜鸟javascript基础资料整理3 正则
更新时间:2010年12月06日 20:34:01 作者:
js正则表达式(RegExp对象) 的使用。
1.js正则表达式(RegExp对象)
RegExp 对象有 3 个方法:test()、exec() 以及 compile()。
①test()方法
//test() 方法检索字符串中的指定值。返回值是 true 或 false。
var patt1=new RegExp("e");
document.write(patt1.test("The best things in life are free"));
②exec()方法
//exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null。
var patt1=new RegExp("e");
document.write(patt1.exec("The best things in life are free"));
未完待续。
RegExp 对象有 3 个方法:test()、exec() 以及 compile()。
①test()方法
//test() 方法检索字符串中的指定值。返回值是 true 或 false。
var patt1=new RegExp("e");
document.write(patt1.test("The best things in life are free"));
②exec()方法
//exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null。
var patt1=new RegExp("e");
document.write(patt1.exec("The best things in life are free"));
未完待续。
您可能感兴趣的文章:
相关文章
为JS扩展Array.prototype.indexOf引发的问题及解决办法
这篇文章主要介绍了为JS扩展Array.prototype.indexOf引发的问题及解决办法,需要的朋友可以参考下2015-01-01在JavaScript中操作时间之setYear()方法的使用
这篇文章主要介绍了在JavaScript中操作时间之setYear()方法的使用,是JS入门学习中的基础知识,需要的朋友可以参考下2015-06-06
最新评论