标签:bsp style 自己实现 class replace OLE str color span
const obj = { name: ‘zj‘, age: 18 } const str = `我的名字叫${ obj.name },今年${obj.age}岁` function replace(str){ return str.replace(/\$\{([^}]+)\}/, function(data){ return data; }); } console.log(replace(str)) console.log(str)
// [^}]+ 匹配}符号,+代表一次或多次
标签:bsp style 自己实现 class replace OLE str color span
原文地址:https://www.cnblogs.com/apple78/p/12979880.html