Я использую API Twitter и хочу конвертировать все URL-адреса в гиперссылки.
Каков наиболее эффективный способ сделать это?
от
string myString = "This is my tweet check it out http://tinyurl.com/blah";
к
This is my tweet check it out <a href="#" onclick="location.href='http://tinyurl.com/blah'; return false;">http://tinyurl.com/>blah</a>