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
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
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。