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') 有两种方式
原文:http://www.cnblogs.com/tangchangcai/p/7818595.html