3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gethashtags($text) { //Match the hashtags preg_match_all('/(^|[^a-z0-9_])#([a-z0-9_]+)/i', $text, $matchedHashtags); $hashtag = ''; // For each hashtag, strip all characters but alpha numeric if(!empty($matchedHashtags[0])) { foreach($matchedHashtags[0] as $match) { $hashtag[] = preg_replace("/[^a-z0-9]+/i", "", $match); } } //to remove last comma in a string //return rtrim($hashtag, ','); return $hashtag; } //usage $text = "dfd'fdfd%#df"; print_R(gethashtags($text));

preferences:
64.5 ms | 402 KiB | 5 Q