当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.replace()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,lang,函数,对象,数字等。

_.replace()方法用替换替换字符串中模式的匹配项。此方法基于String#replace。

用法:

_.replace(string, pattern, replacement)

参数:此方法接受上述和以下所述的三个参数:

  • string:此参数保存原始字符串。
  • pattern:此参数保存需要替换的模式字符串。
  • replacement:此参数保存替换字符串。

返回值:此方法返回修改后的字符串。



范例1:在这里,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);

输出:

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。

相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.replace() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。