Find Hyperlinks in Text using Python (twitter related)
Posted
by
TimLeung
on Stack Overflow
See other posts from Stack Overflow
or by TimLeung
Published on 2009-04-06T02:37:48Z
Indexed on
2012/10/25
23:01 UTC
Read the original article
Hit count: 200
How can I parse text and find all instances of hyperlinks with a string? The hyperlink will not be in the html format of <a href="http://test.com">test</a>
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:
Easiest way to convert a URL to a hyperlink in a C# string?
but was unable to reproduce it in python :(
© Stack Overflow or respective owner