RegExp对象的方法
标签:
JavaScript
1. pattern.test(str);
返回值是boolean类型,匹配返回true,不匹配返回false
2. pattern.exec(str);
返回值是object类型,匹配返回str对应的字符串,不匹配返回null
var pattern = new RegExp("box","igm"); var str = "Box"; alert(pattern.test(str)); // truevar pattern = /box/i;var str = "This is a Box"; alert(pattern.test(str)); // truevar pattern = /box/i;var str = "Box"; alert(pattern.exec(str)); //Boxvar pattern = /box/i;var str = "aox"; alert(pattern.exec(str)); //null
作者:椰果粒
链接:https://www.jianshu.com/p/f624ce767288
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦