How can I parse text and find all instances of hyperlinks with a string? The hyperlink will not be in the html format of test but just http://test.com
Secondly, I would like to then convert the original string and replace all instances of hyperlinks into clickable html hyperlinks.
I found an example in this thread:
http://stackoverflow.com/questions/32637/easiest-way-to-convert-a-url-to-a-hyperlink-in-a-c-string
but was unable to reproduce it in python :(