Appearance
_.escapeRegExp() 方法用于转义字符串中的正则表达式特殊字符。
_.escapeRegExp()
string
(string): 返回转义后的字符串。
const result = _.escapeRegExp("(hello)"); console.log(result); // => '\\(hello\\)'
在这个示例中,字符串 '(hello)' 中的正则表达式特殊字符被转义,结果为 '\\(hello\\)'。
'(hello)'
'\\(hello\\)'