js 重新学习笔记( 六 ) 正则表达式
1, RegExp 正则表达式对象
test 方法测试字符串中有没有指定的字符 ,返回 true 或false
var patt1=new RegExp("e"); document.write(patt1.test("The best things in life are free")); 由于字符串中包含"e" 返回 true
2, exec 方法寻找字符串中指定的值, 找到了就返回该值 ,没找到就 返回null
var patt1=new RegExp("e"); document.write(patt1.exec("The best things in life are free")); 由于该字符串中存在字母 "e",以上代码的输出将是: e
var patt1 =new RegExp("","") ; 也可以有第二个参数 .
更多的请看REG 对象参考手册
相关推荐
88274956 2020-11-03
runner 2020-09-01
梦的天空 2020-08-25
移动开发与培训 2020-08-16
ReunionIsland 2020-08-16
lyqdanang 2020-08-16
MyNameIsXiaoLai 2020-07-08
星辰的笔记 2020-07-04
csstpeixun 2020-06-28
letheashura 2020-06-26
liaoxuewu 2020-06-26
sunzhihaofuture 2020-06-21
FEvivi 2020-06-16
坚持着执着 2020-06-16
waterv 2020-06-14
xiaoge00 2020-06-14
firejq 2020-06-14
firstboy0 2020-06-14
e度空间 2020-06-12
zhongweinan 2020-06-10