Following regular expression (regEx) can be used to replace the urls in a string with the anchor tags with href attribute points to that url. RegEx: https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)? // Automatically link URL's inside text. function matchURL($string){ return(preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '$1', $string )); } | |
Deep-sea Anglerfish are the strange and elusive creature that are very rarely observed in their natural habitat. Fewer than half a dozen have ever been captured on film or video by deep-diving research vehicles.They are mostly found in tropical to temperate waters of the Indian,Pacific and Atlantic Oceans.

Comments
Post a Comment