MyBB Community Forums

Full Version: BB code help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

First I'm not sure if this is the right forum so sorry if it doesn't belong here!


I want to make a BB code form this:

[hilight={COLOR}]{TEXT}[/hilight]

repl.

<span style="background-color:{COLOR};">{TEXT}</span>

What I had done and it didnt work is:
\[hilight\={.*?}\]{.*?}\[/hilight\]

repl.

<span style="background-color:"$1";">$2</span>

Where did I go wrong? Smile
Use this:
Regex:
\[hilight\=([a-zA-Z]*?|\#?[0-9a-fA-F]{6})\](.*?)\[/hilight\]
Replacement:
<span style="background-color: $1;">$2</span>
ZiNgA BuRgA Wrote:Use this:
Regex:
\[hilight\=([a-zA-Z]*?|\#?[0-9a-fA-F]{6})\](.*?)\[/hilight\]
Replacement:
<span style="background-color: $1;">$2</span>

Thanks a lot. You've been helpfull as alwaysSmile