String.match(正则 或 'string') 有两种方式
Posted 爱我所爱,不负芳华
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String.match(正则 或 'string') 有两种方式相关的知识,希望对你有一定的参考价值。
method1:
‘1aaa2bb3‘.match(/\d/g) //return : [1,2,3]
method2:
‘1aaa2bb3 hello world‘.match(‘world ‘) //return null,是因为后面有个空格所以返回null
‘1aaa2bb3 hello world‘.match(‘world‘) //return world
以上是关于String.match(正则 或 'string') 有两种方式的主要内容,如果未能解决你的问题,请参考以下文章
正则表达式测试VS string.match 知道一个字符串是不是匹配一个正则表达式
Javascript:String.match() - 在正则表达式中传递字符串变量[重复]