使用php从字符串中解析RGB值
有没有办法从字符串中解析多个 RGB 值?颜色应该以什么方式编码?
例如。
$string = "foobar [rgb:123abc] some other text and another color: [rgb:ffeecc]"
我希望将 [rgb:xxxxxx]
替换为类似的内容
Is there a way to parse multiple RGB values from a string? In what way should the colours be coded?
Eg.
$string = "foobar [rgb:123abc] some other text and another color: [rgb:ffeecc]"
I want [rgb:xxxxxx]
to be replaced with something like <div style="background: #xxxxxx;"> </div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此正则表达式来获取模式...
You could use this regex to pick up the pattern...