使用php解析字符串中的RGB值

时间:2011-01-28 11:56:51

标签: php parsing rgb

有没有办法解析字符串中的多个RGB值?应该以何种方式对颜色进行编码?

例如

$string = "foobar [rgb:123abc] some other text and another color: [rgb:ffeecc]"

我希望将[rgb:xxxxxx]替换为<div style="background: #xxxxxx;">&nbsp;</div>

之类的内容

1 个答案:

答案 0 :(得分:3)

您可以使用此正则表达式来获取模式...

/\[rgb:([0-9a-f]{6})\]/i