If you don’t know Mr. Strout, it is unfortunate. A masterful surgeon of words who creates a powerful message for companies that need it. Taking his advice… .@nscalice my top…
- Posted in
Only have Sysomos tweet context? Extract username from URL.
- Posted byby John Steinmetz
- 1 min
Using regular expressions you can extract the username from a twitter URL. var twitterURL = item.link; var twitterName = twitterURL.match(/https?:\/\/(www\.)?twitter\.com\/(#!\/)?@?([^\/]*)/)[3];
I created a simple tool that collects pinterest pins and boards just by typing in a pinterest user name. It uses a modified API I found at http://pinterestapi.co.uk. The drawback to…