vote up 2 vote down star

I am consuming the Twitter API and want to convert all URLs to hyperlinks.

What is the most effective way you've come up with to do this?

from

string myString = "This is my tweet check it out http://tinyurl.com/blah";

to

This is my tweet check it out <a href="http://tinyurl.com/blah">http://tinyurl.com/blah</a&gt;

flag

3 Answers

vote up 5 vote down check

Regular expressions are probably your friend for this kind of task:

Regex r = new Regex("(http://[^ ]+)");
myString = r.Replace(myString, "<a href=\"$1\">$1</a>");

The regular expression for matching URLs might need a bit of work.

link|flag
vote up 3 vote down

This is actually an ugly problem. URLs can contain (and end with) punctuation, so it can be difficult to determine where a URL actually ends, when it's embedded in normal text. For example:

http://example.com/.

is a valid URL, but it could just as easily be the end of a sentence:

I buy all my witty T-shirts from http://example.com/.

You can't simply parse until a space is found, because then you'll keep the period as part of the URL. You also can't simply parse until a period or a space is found, because periods are extremely common in URLs.

Yes, regex is your friend here, but constructing the appropriate regex is the hard part.

Check out this as well: Expanding URLs with Regex in .NET.

link|flag
That was perfect.. :) – TimLeung Mar 26 at 18:50
I've been buying mine from tempuri.org. – eed3si9n Jul 18 at 20:04
vote up 1 vote down

I did this exact same thing with jquery consuming the JSON API here is the linkify function:

String.prototype.linkify = function() {
    return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(m) {
    	return m.link(m);
    });
 };
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.