# lodash escapeRegExp
转义 RegExp 字符串中特殊的字符。
概要
_.escapeRegExp([string=''])
把转义 RegExp
字符串中特殊的字符 "^", "$", "", ".", "*", "+", "?", "(", ")", "[", "]", "{", "}", 和 "|" 转换为 string
。
添加版本
3.0.0
参数
[string=''] (string)
: 要转义的字符串。
返回 (string): 返回转义后的字符串。
例子
_.escapeRegExp('[lodash](https://lodash.com/)');
// => '\[lodash\]\(https://lodash\.com/\)'
← _.escape _.kebabCase →