vote up 0 vote down star

Hi all!

I'm working on a php dynamic web page that has a element that let user write and their text is show in "real time" just javascript-processing the text & tags on a element.

I change the "b","u", and tags between brackets (like phpbb style) to its html equivalent like "strong" ,"u", and so using javascript regexps.

Problem occurs when i need to process the URL tag, when taking URL from [URL=http://.....

How can i replace it to 'a href="http:/..." ' thing?

Thanks in advance

flag

70% accept rate

1 Answer

vote up 0 vote down check

This should work:

str.replace(/\[url=([^\s"<>\]]+)\]/gi, '<a href="$1">$1</a>');

That should take the parameters in [url=...] and, barring any funny business (<, > or spaces), change it to a hyperlink, using the URL as both the destination and the link text.

This will allow things like [url=javascript:while(1)alert('Boo!')], which will produce a link that, when clicked, will really annoy the user - you'll have to add some sanitisation filtering to block stuff like that.

link|flag
Thanks! It worked perfectly :) Just what I needed :D – Ragnagard Jul 10 at 11:24
Great. I've just noticed I didn't add the double-quote character ( " ) to the list of disallowed characters - I'd recommend squeezing it in so the tag link doesn't end early and screw things up. I've added it in to the regex now. – Samir Talwar Jul 10 at 12:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.