# lodash replace

替换 string 字符串中匹配的 pattern 为给定的 replacement。

概要

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

替换 string 字符串中匹配的 pattern 为给定的 replacement

注意: 这个方法基于 String#replace .

添加版本

4.0.0

参数

  1. [string=''] (string): 待替换的字符串。
  2. pattern (RegExp|string): 要匹配的内容。
  3. replacement (Function|string): 替换的内容。

返回 (string): 返回替换后的字符串

例子


_.replace('Hi Fred', 'Fred', 'Barney');
// => 'Hi Barney'

Last Updated: 6/17/2023, 6:57:19 PM