javascript - 用js,替换一段字符串当中以background-color: rgb为开头,
程序员文章站
2022-05-17 09:13:56
...
用js,替换一段字符串当中以background-color: rgb为开头,以;结尾的字符串,替换为background-color: rgb(225,23,45);
回复内容:
用js,替换一段字符串当中以background-color: rgb为开头,以;结尾的字符串,替换为background-color: rgb(225,23,45);
"background-color: rgb(afdf);".replace(/\b(background-color:\s*rgb)[^;\n]*;/g,"$1(255,23,45);")
下一篇: 开发中常用字符串方法