es6如何利用正则表达式在字符串里找到指定值,下面web建站小编给大家详细介绍一下介绍正则表达式的运用方法!
match的运用
var string = "foo", exp = /oo/; var result = string.match(exp); console.log(result); //['oo', index: 1, input: 'foo', groups: undefined]
test的运用
var string = "foo", exp = /oo/; var result = exp.test(string); console.log(result); //true
search的运用
var string = "foo", exp = /oo/; var result = string.search(exp); console.log(result); // 1,搜索不到返回-1
标签: match, search, test, 正则表达式
上面是“es6如何利用正则表达式在字符串里找到指定值”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3260.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!