Snipe.Net - Geeky Stuff
Twitter
Currently: Has everyone wished @lundegaard a happy birthday today? :) 1 hr ago

PHP Regex to Make Twitter Links Clickable

This is just a quicky post, not one of my usual long, rambling diatribes. This week is madness, even by my own absurd standards, but I didn’t want to miss jotting this down in case it might be helpful to others.

I’ve had varying degrees of success trying to find a series of preg_replace statements that would correctly replace output generated by Twitter’s RSS feeds (which do not contain any linking HTML) to autolink hyperlinks, @replies and hashtags, so I finally sat down and sorted it out myself.

The code below should correctly autolink all of the autolinkables in your PHP script:

  • links @username to the user’s Twitter profile page
  • links regular links to wherever they should link to
  • links hashtags to a Twitter search on that hashtag
function twitterify($ret) {
  $ret = preg_replace("#(^|[\n ])([\w]+?://[\w]+[^ \"\n\r\t< ]*)#", "\\1<a href=\"\\2\" target=\"_blank\">\\2</a>", $ret);
  $ret = preg_replace("#(^|[\n ])((www|ftp)\.[^ \"\t\n\r< ]*)#", "\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>", $ret);
  $ret = preg_replace("/@(\w+)/", "<a href=\"http://www.twitter.com/\\1\" target=\"_blank\">@\\1</a>", $ret);
  $ret = preg_replace("/#(\w+)/", "<a href=\"http://search.twitter.com/search?q=\\1\" target=\"_blank\">#\\1</a>", $ret);
return $ret;
}

Someday I’ll try to find the time to write a regex primer/tutorial. Regex is another one of the things, like SVN, that seems scary and incomprehensible to many people, but eventually it clicks and makes sense. In the meantime, if you’re interested in learning more about using Regex in PHP, check out the following resources:

More Regexy Goodness:

Make sure you leave yourself some time to actually try out some examples, and dissect the examples they give so that you really grok what’s happening. Once it clicks, it seems so simple, you won’t believe you ever let it beat you up and take your lunch money.

Image by xkcd, via their awesome web store. The comic rocks my geeky face off. I buy my clothes there. So should you.

PS – still really, really hate posting code in Wordpress. Even in HTML mode, it keeps converting my fscking special characters, which then get double/triple/etc converted.

If you think this article kicked ass, subscribe to the RSS feed or follow me on Twitter! Share with your friends, or leave a comment below (or better still, do both!) My entire concept of self-worth is in your hands, so that makes you kind of a big deal. Srsly.

Also check out:  

This entry was posted on Thursday, September 10th, 2009 at 4:44 am and is filed under PHP/mySQL, Web Development. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
  • I use this on Media UK - www.mediauk.com - to power a few things, including the ingest of the media tweets on the front page.

    You might like to add
    $ret = html_entity_decode($ret);
    at the start of the function - otherwise you see odd things going on when Twitter (or some client) HTML-encodes things like pound signs.
  • I think that's the exact same set of regular expressions I'm using to parse links on my website home page.
  • Very nice. I remember when Regex seemed like magic, but now it is one of my most often used tools.
  • Stace
    This is great! I'm just learning preg replace and regex and had already spent some time trying to figure this out with no result in sight. Thank you very much.

    One quickie, though: email addresses. Some tweets contain 'you@gmail.com' with the predictable result of only '@gmail' linking to www.twitter.com/gmail. Any thoughts on a fix?

    Thanks again!
  • Joel R
    This totally kicks ass and saved me a good hour+ of work and I'm really good with regexs.

    Thanks!!
  • Excellent - glad to hear it!
  • This is beautiful.. no seriously, almost made me cry when I saw it. I was about to put "twitter-ifying" my twitter RSS feed on the back-burner, but this is drop-in beauty. Thanks.
  • LOL It's good to know you're not prone to hyperbole or anything. :D I'm glad it helped!
  • Please let me know how to implement this on my twitter. Thank you
  • You don't implement it on your Twitter - Twitter already does auto-linking for you. You would use this in an application or web page that is pulling directly from your Twitter feed and emebdding in the page.
  • amidar
    So how do you apply this function in a tweet or rss?
    Sorry to sound dumb but would appreciate an example
  • You wouldn't use it in a tweet or RSS, you would use it in a PHP script that parses tweets or tweet RSS feeds.

    echo twitterify($tweet_content);
  • Ninja Developer
    Thanks buddy, that made my day :)
  • You can't use this on HTML code without risking to destroy your HTML. Example:

    Don't break!

    (... let's hope this thing doesn't post my link as link but as HTML code ;) )
  • Twitter doesn't allow HTML code, so that's not really an issue.
  • Bill K
    Awesome! Thank you so much. I've been trying for a week to do this and being new to Regex was getting strange results (if any).
  • That's very cool tips. Thanks for your post.
  • Thanks a lot for this nice function!
  • Wait, I caught a bug.
    If you parse a message like this "blah..blah..blah www.google.com?",
    the question mark will be included in the url.
  • That's a great one, I really was thinking about using regex to make links clickable, but here you are =]
    can't live without your code ;) haha
  • Not if this matters but I was getting "bad escape" warnings from Zend Studio. You can see the changes I made below.

    $string = preg_replace("#(^|[\n ])([\\w]+?://[\\w]+[^ \"\n\r\t< ]*)#", "\\1\\2", $string);
    $string = preg_replace("#(^|[\n ])((www|ftp)\\.[^ \"\t\n\r< ]*)#", "\\1\\2", $string);
    $string = preg_replace("/@(\\w+)/", "@\\1", $string);
    $string = preg_replace("/#(\\w+)/", "#\\1", $string);
  • Okay - weirdly, I didn't forget the closing anchor tags - Wordpress keeps stripping them out, no matter how many times I re-add them. WTF?
  • I'll be damned, you're right... lol - how the hell did I do that? Thanks for the heads up - I'll fix it.
  • this is awesome, i made one modification - your first two replacements forgot to close the link.
    .-= mike´s last blog ..the family at home =-.
blog comments powered by Disqus