lodash escapeRegExp 转义正则特殊字符
_.escapeRegExp([string=''])
转义RegExp
中特殊的字符 "^", "$", "\", ".", "*", "+", "?", "(", ")", "[", "]", "{", "}", 以及 "|"。
_.escapeRegExp('[lodash](https://lodash.com/)');
// => '\[lodash\]\(https://lodash\.com/\)'
作者:孟繁贵 Email:meng010387@126.com 期待共同进步!