Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Maybe do you need something similar?
$html = 'xxx:yyyimage_17aaa:9999'; $webwords = preg_split("/([:'\n\"]+|image_17)/", $html); print_r($webwords);
And the output:
Array ( [0] => xxx [1] => yyy [2] => aaa [3] => 9999 )