Lodash

是一个一致性、模块化、高性能的 JavaScript 实用工具库。

“String” Methods

_.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'

数组 Array

集合 Collection

日期 Date

函数 Function

Lang

数学 Math

数字 Number

对象 Object

Seq

字符串 String

实用函数 Util

Properties

Methods