<?php $value = 'split fiction (n'; $tokens = array_filter(array_map( function ($string) { return preg_replace("/[^a-zA-Z0-9']/", '', trim($string)); }, explode(' ', $value), )); var_dump($tokens);
You have javascript disabled. You will not be able to edit any code.