I'm trying to remove everything except valid letters (from any language) in PHP. I've been using this:
$content=preg_replace('/[^\pL\p{Zs}]/u', '', $content);
But it's painfully slow. Takes about 30x longer than:
$content=preg_replace('/[^a-z\s]/', '', $content);
I'm dealing with large amounts of data, so it really isn't feasible to use a slow method.
Is there a faster way of doing this?
mb_ereg_replace, but that's even slower. (Theiconvextension provides no letter-filtering, and don't know of anything else.) – mario Nov 12 '11 at 9:56+, eg:/[^\pL\p{Zs}]+/u? It should perform a little better. – NullUserException♦ Nov 12 '11 at 14:50