es6如何利用正则表达式在字符串里找到指定值

2024年11月04日 建站教程

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

本文链接:http://so.lmcjl.com/news/16970/

展开阅读全文
相关内容