Hi All,
I'm using regular expression to find url's and hyper link them with string replace, what I have works fine untill the url has both " and " ie: is there any simple change I can make to what I have to fix that ?
Thanks for reading.
I'm using regular expression to find url's and hyper link them with string replace, what I have works fine untill the url has both " and " ie: is there any simple change I can make to what I have to fix that ?
Code:
<body onload=hyperl();>
<div id="content" style="height:100px;border:red groove 4px">
</div>
<script type="text/javascript">
var str="[URL unfurl="true"]http://test.com[/URL] [URL unfurl="true"]www.test.com[/URL] [COLOR=red][URL unfurl="true"]http://www.test.com[/URL][/color]";
function hyperl (){
//var reurl = /((http:\/\/|www\.)[^\s]*)/ig;//failed
var reurl = /(http:\/\/[^\s]*)/ig;
var reurl2 = /(www\.[^\s]*)/ig;
var bm = str.match(reurl);
var mb = str.match(reurl2);
if (bm !=null){str = str.replace(reurl,"<a href='"+bm+"' target='_about'>"+bm+"</a>");}
if (mb !=null){str = str.replace(reurl2,"<a href='[URL unfurl="true"]http://"+mb+"'[/URL] target='_about'>"+mb+"</a>");}
document.getElementById('content').innerHTML=str;
}
</script>
Thanks for reading.