Lodash _.replace() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、集合、字符串、语言、函数、对象、数字等。
_.replace() 方法用替换替换字符串中模式的匹配项。此方法基于 String#replace。
句法:
_.replace(string, pattern, replacement)
参数:此方法接受三个参数,如上所述,如下所述:
- 字符串:此参数保存原始字符串。
- pattern:该参数保存需要替换的模式字符串。
- 替换:此参数保存替换字符串。
返回值:该方法返回修改后的字符串。
示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var string = _.replace('Stay In', 'In', 'Safe');
// Using the _.replace() method
let replace_elem = _.replace(string);
// Printing the output
console.log(replace_elem);
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var num = _.replace('234 56 41', '56 41', '78');
// Using the _.replace() method
let replace_elem = _.replace(num);
// Printing the output
console.log(replace_elem);
输出:
Stay Safe
示例 2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var num = _.replace('234 56 41', '56 41', '78');
// Using the _.replace() method
let replace_elem = _.replace(num);
// Printing the output
console.log(replace_elem);
输出:
234 78
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。