1. 程式人生 > >String.match(正則 或 'string') 有兩種方式

String.match(正則 或 'string') 有兩種方式

hello urn str eth return null string ret method

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') 有兩種方式