i have this code to make clickable links into my app:
$string = preg_replace('!(((f|ht)tp://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=]+)!i', '<a href="$1" rel="nofollow">$1</a>', $string);
$string = preg_replace('/@(\w+)/', '<a href="http://twitter.com/$1" rel="nofollow">$0</a>', $string);
$string = preg_replace('/#(\w+)/', '<a href="http://search.twitter.com/search?q=%23$1" rel="nofollow">$0</a>', $string);
Above code is working fine, but suddenly Im seeing some links like http://twitter.com/#!/username and http://domain.com/hello@all/ and breaks everything, any idea how to fix my code?
string var comes directly from twitter API, here is an example: $string = 'http://twitter.com/!#/metallica http://someurl.com/get@stuff/';
Thanks in advance. Edited: added string value.
!(((f|ht)tp://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=!*]+)!ias your regular expression instead. – erisco Apr 17 '11 at 4:48$string?? – experimentX Apr 17 '11 at 4:49$string = ?.. – experimentX Apr 17 '11 at 4:52!(((f|ht)tp://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=!\*]+)!i– erisco Apr 17 '11 at 4:55