I have a large blocks or text on a message board that will contain strings beginning with #. Can I use jquery to replace these with a link containing the string?

For example, changing:

<div id="mydiv">This is my #block of text with #multiple hash strings</div>

to:

<div id="mydiv">This is my <a href="newpage.asp?block">#block</a> of text with <a href="newpage.asp?multiple">#multiple</a> hash strings</div>

Thanks in advance!

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

You could use the following code to replace strings:

var string = "#has etc #has ";
string = string.replace(/#(\S+)/g, '<a href="newpage.asp?$1">#$1</a>');
link|improve this answer
feedback

This will do the work:

$('*:contains("#")').each(function(){
 if($(this).children().length < 1) 
      $(this).html( 
           $(this).text().replace(
                /#(.*)#/
                ,'<a href=newpage.asp?'+$(this).text()+'>'+$(this).text()+'</a>'
           )  
       ) 
});
link|improve this answer
3  
Welcome to StackOverflow! It's always a good idea to test your solutions before posting them, possibly on jsfiddle.net , to make sure they actually work as intended. – Blazemonger Nov 8 '11 at 20:23
1  
You should be consequent when replacing content using text() and html(). If the html contained &gt;script&lt;, the result after replacing would be <script>. – Rob W Nov 8 '11 at 20:27
i think i got it now :) – gkof Nov 8 '11 at 20:29
Thanks a lot, a combination of both answers did the trick. – Bobney Nov 8 '11 at 20:40
Thanks @RobW does the &gt;script&lt; effect also happen with html()? Just tried and it seems ok. jsfiddle.net/bobney/4tKn3 – Bobney Nov 8 '11 at 21:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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