tags:

views:

70

answers:

1

There's a PCRE regex for extracting URLs posted here: http://daringfireball.net/2009/11/liberal_regex_for_matching_urls

\b(([\w-]+://?|www[.])[^\s()<>]+(?:\([\w\d]+\)|([^[:punct:]\s]|/)))

What would need to be changed to make it compatible with regex in .NET?

+2  A: 
Nicolas Webb
Nice work :) Thank you!
John Sheehan