最佳答案
很多时候,我使用string match
函数来知道字符串是否匹配正则表达式。
if(str.match(/{regex}/))
这两者之间有什么区别吗:
if (/{regex}/.test(str))
它们似乎给出了相同的结果?