<?php $text="one #two three #four #five"; $parts = array_filter( explode(' ', $text), function($word) {return strpos($word,"#")===0;} ); print_r($parts);
You have javascript disabled. You will not be able to edit any code.