Citizen
Citizen

Reputation: 12947

Convert BBCode [url] tags into clickable HTML <a href> links

I was using str_replace() for other BBCodes, but I'm stuck with the url portion.

I need to convert:

[url=http://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image]Brits[/url]

to

<a href="ttp://maps.google.com/maps?ie=UTF-8&oe=utf-8&rls=org.mozilla:en-US:official&client=firefox-a&um=1&q=brits+pub&near=Pasadena,+CA&fb=1&cid=0,0,17926180203917841249&sa=X&oi=local_result&resnum=1&ct=image">Brits</a>

Upvotes: 1

Views: 191

Answers (2)

Dostee
Dostee

Reputation: 744

There is actually a good SO question about this already: Best way to parse bbcode.

Also, using an already existing BBCode parser library is advisable to attempting to making your own.

Upvotes: 0

Franz
Franz

Reputation: 11553

Why don't you take a look at other BBCode parsers?

Just replacing tags isn't sufficient anyways, since this can (and will) lead to incorrect markup.

Upvotes: 2

Related Questions