views:

70

answers:

1

If someone posts a multi-line post that contained text and links, I want to be able to find and wrap the links with <p> tags, but I can only do it with one link at a time (source code comes from phpBB2 - clickable links function), which causes every link to be like this:

<p>http://www.bbc.co.uk/&lt;/p&gt;
<p>http://www.bbc.co.uk/&lt;/p&gt;
<p>http://www.bbc.co.uk/&lt;/p&gt;

Where I want it to happen to be like this:

<p>http://www.bbc.co.uk/
http://www.bbc.co.uk/
http://www.bbc.co.uk/&lt;/p&gt;

Cheers.

+2  A: 

Feed it to DOM loadHTML function and getElementsByTagName('p'), make a reference with ->item(i) based on the ->length, get the nodeValue and just make a new paragraph with document.createElement, set the nodeValue to your string of nodeValues that you retrieved from the loop after concatenating them with \n<br> or something.

You shouldn't use regex for this.

meder
Why? Why shouldn't I use regex for this?
YouBook