<?php $chars = preg_quote('|/\.,:;_+', '/'); $string = 'a;b:c.d__e\f'; $result = preg_split('/[' . $chars . ']/', $string); var_dump($result);
You have javascript disabled. You will not be able to edit any code.