Lodash - escapeRegexp 方法



语法

_.escapeRegexp([string=''])

对字符串中的正则表达式特殊字符 "^", "$", "", ".", "*", "+", "?", "(", ")", "[", "]", "{", "}", 和 "|" 进行转义。

参数

  • [string=''] (string) − 要转义的字符串。

输出

  • (string) − 返回转义后的字符串。

示例

var _ = require('lodash');
var result = _.escapeRegExp('[tutorialspoint](https://tutorialspoint.com/)');;

console.log(result);

将以上程序保存到 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

\[tutorialspoint\]\(https://tutorialspoint\.com/\)
lodash_string.htm
广告