_.replace([string=''], pattern, replacement)
_.replace()
方法用于替换字符串中匹配的子字符串。
参数
string
(string): 要替换的字符串。pattern
(RegExp|string): 要匹配的模式。replacement
(string|Function): 替换匹配到的子字符串的内容。
返回值
(string): 返回替换后的字符串。
示例
javascript
const result = _.replace("Hello World", "World", "Universe");
console.log(result);
// => 'Hello Universe'
在这个示例中,字符串 'Hello World'
中的 'World'
被替换为 'Universe'
,结果为 'Hello Universe'
。