Page is a not externally linkable
Gibble - 5:55 pm on Jul 22, 2009 (gmt 0)
your regex of /www\.\s+\.com/ It also has a few expressions in the library such as this one for URLs: Which since you aren't starting your match with "protocol://", but with "www."
I recommend you get the tool called expresso to help you write regular expressions
matches www.(whitespace).com
(?<Protocol>\w+):\/\/(?<Domain>[\w@][\w.:@]+)\/?[\w\.?=%&=\-@/$,]*
can be changed to
/www.(?<Domain>[\w@][\w.:@]+)\/?[\w\.?=%&=\-@/$,]*/