有没有办法解析字符串中的多个RGB值?应该以何种方式对颜色进行编码?
例如
$string = "foobar [rgb:123abc] some other text and another color: [rgb:ffeecc]"
我希望将[rgb:xxxxxx]
替换为<div style="background: #xxxxxx;"> </div>
答案 0 :(得分:3)
您可以使用此正则表达式来获取模式...
/\[rgb:([0-9a-f]{6})\]/i