Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Try !(((f|ht)tp://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=!*]+)!i as your regular expression instead. – erisco Apr 17 '11 at 4:48
can you put up value of $string?? – experimentX Apr 17 '11 at 4:49
@erisco thanks, but im getting this error: Unknown modifier '*' /@experimentX what do you mean? – greenbandit Apr 17 '11 at 4:51
$string = ? .. – experimentX Apr 17 '11 at 4:52
Maybe !(((f|ht)tp://)[-a-zA-Zа-яА-Я()0-9@:%_+.~#?&;//=!\*]+)!i – erisco Apr 17 '11 at 4:55
show 3 more comments

1 Answer

Why are you tampering with those URL? If they are direct links, then just leave them as they are! Simple regex pattern like this:

((?:f|ht)tp://[^\s]*)

will match any URL inside the string.

So, your code should be just:

$string = preg_replace('/((?:f|ht)tp:\/\/[^\s]*)/i', '<a href="$1" rel="nofollow">$1</a>', $string);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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