Skip to content

Instantly share code, notes, and snippets.

@md2perpe
Created June 1, 2011 21:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save md2perpe/1003330 to your computer and use it in GitHub Desktop.
Save md2perpe/1003330 to your computer and use it in GitHub Desktop.
Twitter hashtag link base
<?php
$tweet = 'Detta är ett #test för min blog... #ignoreme #lördag #måla #mäktigt #coolt #åsa-nisse #()lol()';
$pattern = '/#(\pL+)/';
$replacement = '<a href="#$1">$0</a>';
echo preg_replace($pattern, $replacement, $tweet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment