编程开发 > JAVA > 文章内容

Java正则表达式:compile()

2016-5-21编辑:ljnbset

compile()

compile() 方法用于改变 RegExp。

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

例子:

var patt1=new RegExp("e");

document.write(patt1.test("The best things in life are free"));

patt1.compile("d");

document.write(patt1.test("The best things in life are free"));

由于字符串中存在 "e",而没有 "d",以上代码的输出是:

truefalse
Java算数实例:JavaScriptMath(算数)对象

热点推荐

登录注册
触屏版电脑版网站地图