ahh, I see what you're talking about. That happened for two reasons:
First, as I mentioned in this post, I modified the regex I was using after my initial response. The changes I made were specifically to allow matching URLs with multiple subdomains and subdomains other than "www". When I edited my post to show those changes, I changed the regex itself as well as my commentary on it. However, I overlooked the regex in the example I gave.
Second, when I posted the regex, I forgot to use [noparse] tags, so VBulletin thought I was posting a hyperlink and added [url] tags to parts of the regex (in a discussion about parsing URLs, the irony does not escape me). As you can see, the regex doesn't work properly with those tags inserted. What it comes down to is I tested the code before posting it, but it didn't occur to me to test it after posting.
Here's the regex, without the extraneous BBCode tags:
#\b(?:http://)?(www\.)?(([a-z0-9_-]{2,}\.)+[a-z]{2,}(/[\w\+\-\?\&\;]*)*)\b#i
And here's the correct version of the test:
PHP Code:
<?php
$text = "Looking for marketers who want to work. Ready to change your life? Trevo offers one product - an all natural, vegan, kosher nutritional supplement with 174 nutraceuticals. Visit www.SoCal.trevobuilder.com for product info & to purchase. Find me on facebook at Trevo SoCal or @TrevoSoCal on twitter. Low start up, cost covers first 3 bottles or larger packages available. No registration fees. Start making money this week! Visit trevocorporate.com/coach/sjahr to register on the Presidential Elite team.";
$regexp = "#\b(?:http://)?(www\.)?(([a-z0-9_-]{2,}\.)+[a-z]{2,}(/[\w\+\-\?\&\;]*)*)\b#i";
$hypertext = preg_replace( $regexp,'<a href="http://$1$2">$1$2</a>',$text );
print htmlentities( $hypertext );
and the results:
Code:
Looking for marketers who want to work. Ready to change your life? Trevo offers one product - an all natural, vegan, kosher nutritional supplement with 174 nutraceuticals. Visit <a href="http://www.SoCal.trevobuilder.com">www.SoCal.trevobuilder.com</a> for product info & to purchase. Find me on facebook at Trevo SoCal or @TrevoSoCal on twitter. Low start up, cost covers first 3 bottles or larger packages available. No registration fees. Start making money this week! Visit <a href="http://trevocorporate.com/coach/sjahr">trevocorporate.com/coach/sjahr</a> to register on the Presidential Elite team.
thanks for pointing that out.