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?

link|improve this question

76% accept rate
The only alternative in PHP is mb_ereg_replace, but that's even slower. (The iconv extension provides no letter-filtering, and don't know of anything else.) – mario Nov 12 '11 at 9:56
2  
Have you tried adding a +, eg: /[^\pL\p{Zs}]+/u? It should perform a little better. – NullUserException Nov 12 '11 at 14:50
feedback

2 Answers

up vote 1 down vote accepted

Well, it's a wonder it's only 30 times slower, seeing that it needs to take about 1000 times more characters than just a-z into account when checking if a certain code point is a letter or not.

That said, you can improve your regex a bit:

$content=preg_replace('/[^\pL\p{Zs}]+/u', '', $content);

should speed it up by combining adjacent non-letters/space separators into one single replace operation.

link|improve this answer
feedback

You could try to use the new PCRE 8.20 version with the --enable-jit option. That will JIT compile the regex and might improve performance for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.