I've been working in php for quite some time now, but I admit that I'm a little new to some of the more advanced regular expressions, like vB uses.
Is there any way to have the vB bbcode parser turn this:
Code:
[IMG align="left"]http://image.com/image.gif[/IMG]
into this:
Code:
<img align="left" src="http://image.com/image.gif">
I'm sure there is -- I regret that I don't yet have the skills to make sense of the 30+ character strings vB uses in preg_replace.
Thanks!