codecamp

Lodash _.replace

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


Lodash _.repeat
Lodash _.snakeCase
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Lodash 简介

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }