我正在寻找一个正则表达式,它将在 CSS 文件中查找并替换某些模式,例如在以下字符串中:
.boxOneHeading, .boxTwoHeading, .boxThreeHeading
{
font-size: 18px;
font-family: MuseoSans500;
padding: 10px 15px;
width: 273px;
background-color: #fbfbfb;
background-color: #ffffff;
background-color: #ffcc00;
}
我正在使用以下正则表达式:#?[\s]*(.{1})\1{1}(.{1})\2{1}(.{1})\3{1} 这是正确的发现:
#ffffff and
#ffcc00
但我只想找到#ffcc00 值并将它们替换为#fc0。
我要为此添加什么到正则表达式?
问候, 雅克