Skip to content

Instantly share code, notes, and snippets.

@saiik
Last active November 30, 2016 10:50
Show Gist options
  • Select an option

  • Save saiik/b8d8db703b823965ceaaa0334852b1d1 to your computer and use it in GitHub Desktop.

Select an option

Save saiik/b8d8db703b823965ceaaa0334852b1d1 to your computer and use it in GitHub Desktop.
Filter @mentions and #hashtags from a string
<?php
/**
* Filter @mentions and #hashtags from a string
*
* @author saiik<saikon@hotmail.de>
* @license GPLv3
*/
$str = 'Hello @saiik! #php #github';
preg_match_all('/@\w+/', $str, $mentions);
preg_match_all('/#\w+/', $str, $hashtags);
var_dump($mentions);
var_dump($hashtags);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment