标签:string match eth method 方式 aaa turn null 空格
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') 有两种方式
标签:string match eth method 方式 aaa turn null 空格
原文地址:http://www.cnblogs.com/tangchangcai/p/7818595.html