Linkify your twitter hashtags and twitter user mentions! Need to replace twitter hashtags and usernames with the actual Twitter hashtag search query links/URLs and user profile pages?
Twitter Username / User Mention Preg_replace
1 |
$tweetText = preg_replace("/@([a-zA-Z0-9_]+)/", '<a href="http://www.twitter.com/$1" target="_blank">@$1</a>', $tweetText); |
Twitter Hashtag Preg_replace
1 |
$tweetText = preg_replace('/(^|\s)#(\w*[a-zA-Z_]+\w*)/', '\1#<a href="http://twitter.com/search?q=%23\2">\2</a>', $tweetText); |
This can come in handy when trying to display tweets on your WordPress theme, or really any website! If you are using wordpress, a great plugin to start off with would be oAuth Twitter Feed for Developers