As part of an AIR project that I have been working on with my good friend Rob, we came across the need to parse a number of URLs within the text of a Twitter post. This may not sound too easy at first, but thanks to the prototype property available on JavaScript objects, our task was a relatively simple one.
The prototype object of JavaScript is a prebuilt object that simplifies the process of adding custom properties or methods to all instances of an object. For example, there is not a trim() method available on the String class, therefore, through the wizardry of regular expressions and the prototype property, I can add one.
You simply need to specify String.prototype before your method definition. e.g.:
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); }
With this in mind, we can add methods to our String class, at runtime, that will allow us to manipulate the text string that is passed back in a Twitter JSON packet.
The Goal
To auto-magically parse different types of links within a text string. We will look at standard URL links, links applied to Twitter usernames and those applied to Hashtags.
Demo
The demonstration simply takes a test string and outputs it to the screen using JavaScript.
Parsing URLs as Links to the resource
First we create a custom method of the String.prototype property called parseURL. When invoked on a string, the regular expression finds any instance of a URL and will wrap the URL with an HTML anchor, with the correct href attribute and value applied.
String.prototype.parseURL = function() { return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/, function(url) { return url.link(url); }); };
Demo 1.
We can simply demonstrate the parsing of the link with the following code in the body of the page:
<script type="text/javascript"> var test = "Simon Whatley's online musings can be found at: http://www.simonwhatley.co.uk"; document.write(test.parseURL()); </script>
In the above example, a simple string variable is created called test, which contains a URL. The text does not contain any HTML at this stage. We then write out the test variable applying the parseURL() method to it.
The resultant HTML generated is the following:
Simon Whatley's online musings can be found at: <a href="http://www.simonwhatley.co.uk">http://www.simonwhatley.co.uk</a>
When rendered in a browser, the code becomes a hyper-link.
Parsing Usernames as Links to Twitter
Following on from the URL example above, we can apply a similar methodology to Twitter usernames since they can also be URLs to their associated Twitter page.
Again we create a custom method of the String.prototype property, this time we’ll called it parseUser. The regular expression in this case finds all instances of @username. We then simply replace the @ as this is not part of the actual username. The Twitter URL is then applied to the username.
String.prototype.parseUsername = function() { return this.replace(/[@]+[A-Za-z0-9-_]+/, function(u) { var username = u.replace("@","") return u.link("http://twitter.com/"+username); }); };
Demo 2.
We can simply demonstrate this with the following code:
<script type="text/javascript"> var test = "@whatterz is writing a post about JavaScript."; document.writeln(test.parseUsername()); </script>
The resultant HTML generated is the following:
<a href="http://twitter.com/whatterz">@whatterz</a> is writing a post about JavaScript
Parsing Hashtags as Links to Twitter’s Search
Finally, Twitter also allows user’s to create Hastags within their posts. Hashtags are a community-driven convention for adding additional context and metadata to your tweets. Like regular URLs and usernames, Hastags can been parsed as a URL to an online resource, in this case, Twitter’s search.
Again we create a custom method of the String.prototype property, this time we’ll called it parseHashtag. The regular expression in this case finds all instances of #hashtag. The Twitter Search URL is then applied to the hashtag.
String.prototype.parseHashtag = function() { return this.replace(/[#]+[A-Za-z0-9-_]+/, function(t) { var tag = t.replace("#","%23") return t.link("http://search.twitter.com/search?q="+tag); }); };
Demo 3.
We can simply demonstrate this with the following code:
<script type="text/javascript"> var test = "Simon is writing a post about #twitter and parsing hashtags as URLs"; document.writeln(test.parseHashtag()); </script>
The resultant HTML generated is the following:
Simon is writing a post about <a href="http://search.twitter.com/search?q=%23twitter">#twitter</a> and parsing hashtags as URLs
NB. Twitter’s search was originally provided by Summize. However, as of July 2008, they have been bought by Twitter and the search can be found at http://search.twitter.com.
Where to take it next
Using the above code, we can now create a simple Twitter feed reader. Using, for example jQuery, to get and parse the Twitter JSON packet we can then apply the prototype methods to the text entries.
It is also worth noting that it is possible to cascade the methods, so we can do the following:
<script type="text/javascript"> var test = "@whatterz is writing a blog post about #twitter, which can be found at http://www.simonwhatley.co.uk"; document.writeln(test.parseURL().parseUsername().parseHashtag()); </script>
Download the code
The example code can be downloaded from the demo page.
Tags: JavaScript, parsing, Rob Douglas, tag, Twitter, url, username
-
Great info!
I’m using the ParseURL function on a block of text that I’m passing using a CF variable. It’s only grabbing the first URL and creating the hyperlink, not the whole text.
Here’s my code snippet:
var #toScript(thisString, “test”)#;
document.write(test.parseURL());
Any ideas why it won’t work on the entire text?
Thanks,
Catherine -
How would I use the parseURL function with a form submission? I want to be able to have a user enter some information in a text area, and if they included any urls, I need to use the parseURL function on them.
My code:
Tips:
tips ?>
I also tried using onSubmit and using just tips.parseURL…
I am not very good with Javascript yet, so maybe you could explain what I’m supposed to do to get this to work properly?Thanks a lot!
-
oh, sorry lol the html was used as html…here it is:
Tips: tips ?>
hopefull this’ll show up…sorry about that!
-
and it didn’t….I don’t know how to show you the code then…
I was using a textarea with id=”tips” and was trying to call the parseURL method with onClick on the submit button .. onClick=”document.write(tips.parseURL())” and also tried onSubmit instead of onClick and just tips.parseURL() as well
-
Howdy! Thanks for the article.
So how do I assign the contents of the JSON packet to a variable? Right now I’m using the little patch of Javascript that Twitter provided to display a few Twitter items, but I’m not sure how to actually execute these functions on that data. Is there a way to assign the content to a variable, so I can run these functions on it?
Thanks for your help…
Steve
-
Hi Simon. Just wanted to say that this is exactly the answer to my dilemma. I’ve taken a moment to share this with the CMS Made Simple community and have a post on the forum regarding this. You can view it here http://forum.cmsmadesimple.org/index.php/topic,29083.new/spam,true.html
Thanks for this!
-
using all of them in one go, as showed above you might sometimes get errors if using large object references directly
e.g twitt = { “text” : “some twitter text http://somewhere.com“, source : “web” }
cascading … twitt.text.parseURL().parseUsername().parseHashtag() will give an error in FF, IE
You could better still just use
document.writeln( ( ( twitt.text.parseURL() ).parseUsername() ).parseHashtag() );
-
Wow! Turn this into a Wordpress plugin which can parse newly posted AND existing posts and i would be on cloud 9!
-
I found this post while doing a quick search for a PHP function to do the thing. Mostly I was just glad someone had saved me the trouble of putting together the regex for each of the components.
Anyhow, I’ll share my PHP version here in case any one else stumbling upon this post is looking for it.
function twitterize($raw_text) { $output = $raw_text; // parse urls $pattern = '/([A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+)/i'; $replacement = '<a href="$1" rel="nofollow">$1</a>'; $output = preg_replace($pattern, $replacement, $output); // parse usernames $pattern = '/[@]+([A-Za-z0-9-_]+)/'; $replacement = '@<a href="http://twitter.com/$1" rel="nofollow">$1</a>'; $output = preg_replace($pattern, $replacement, $output); // parse hashtags $pattern = '/[#]+([A-Za-z0-9-_]+)/'; $replacement = '#<a href="http://search.twitter.com/search?q=%23$1" rel="nofollow">$1</a>'; $output = preg_replace($pattern, $replacement, $output); return $output; }Thanks again for saving me some work!
-
I don’t see that anyone else has mentioned this, but it looks like the javascript doesn’t handle multiple hashtags (I haven’t tested out multiple @usernames yet).
For example: http://twitter.com/theadb/statuses/1429168203
Any thoughts on how that might be handled? -
I hacked Jim’s code from above and was successful in using it, so I thought I would share it for the PHP folks out there. Use
${1}instead of
$1
to be able to add surrounding text, such as the
<a>
tags in this case.
See “Example #1 Using backreferences followed by numeric literals” at http://ca.php.net/preg_replace
function twitterize($raw_text) { $output = $raw_text; // parse urls $pattern = '/([A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+)/i'; $replacement = '<a href="${1}" rel="nofollow">${1}</a>'; $output = preg_replace($pattern, $replacement, $output); // parse usernames $pattern = '/[@]+([A-Za-z0-9-_]+)/'; $replacement = '<a href="http://twitter.com/${1}" rel="nofollow">@${1}</a>'; $output = preg_replace($pattern, $replacement, $output); // parse hashtags $pattern = '/[#]+([A-Za-z0-9-_]+)/'; $replacement = '<a href="http://search.twitter.com/search?q=%23${1}" rel="nofollow">#${1}</a>'; $output = preg_replace($pattern, $replacement, $output); return $output; } -
Not sure what happened with the previous comment, but here is the correct code:
function twitterize($raw_text) { $output = $raw_text; // parse urls $pattern = '/([A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+)/i'; $replacement = '<a href="${1}" rel="nofollow">${1}</a>'; $output = preg_replace($pattern, $replacement, $output); // parse usernames $pattern = '/[@]+([A-Za-z0-9-_]+)/'; $replacement = '<a href="http://twitter.com/${1}" rel="nofollow">@${1}</a>'; $output = preg_replace($pattern, $replacement, $output); // parse hashtags $pattern = '/[#]+([A-Za-z0-9-_]+)/'; $replacement = '<a href="http://search.twitter.com/search?q=%23${1}" rel="nofollow">#${1}</a>'; $output = preg_replace($pattern, $replacement, $output); return $output; } -
Thanks Simon, this was very very usefull! I’m not a real programmer but sometimes I have an idea and like to try to realize it. This helped me so much.
@Mark Quenzada, great! I had the same problem with multiple hashes and urls, this works like a charm. Happy person here
-
Thank you so much for this script. It is so helpful and saved me many hours and headaches.









20 comments
Comments feed for this article
Trackback link: http://www.simonwhatley.co.uk/parsing-twitter-usernames-hashtags-and-urls-with-javascript/trackback