Lodash - replace 方法



语法

_.replace([string=''], pattern, replacement)

用 replacement 替换字符串中与 pattern 匹配的内容。

参数

  • [string=''] (字符串) − 要修改的字符串。

  • pattern (RegExp|字符串) − 要替换的模式。

  • replacement (函数|字符串) − 匹配替换内容。

输出

  • (字符串) − 返回修改后的字符串。

示例

var _ = require('lodash');
var result = _.replace('Hi Joe', 'Joe', 'Julie');

console.log(result);

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

命令

\>node tester.js

输出

Hi Julie
lodash_string.htm
广告