Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As a spam filter I want to block any comments that contain

djgalkgjlkdg

or any other excessive amount of consonants in a row.

I thought of maybe having an array of consonants and then check the comment with it, but seems too long and cumbersome.

Do you know of any way I can do this without guzzling memory?

share|improve this question

2 Answers

up vote 10 down vote accepted

preg_match('/[bcdfghjklmnpqrstvwxz]{6}/i', $input) perhaps?

share|improve this answer
dammit - too late :) – jensgram Nov 5 '09 at 9:46
But more correct. The question was about "more than 5" though, so it should be {6}. For example, there is a slovak word with 5 consonants in a row "zmrzlina". :) – Lukáš Lalinský Nov 5 '09 at 9:52
@Lukáš Lalinský - you're right. Edited my answer. – jensgram Nov 5 '09 at 15:12
if(preg_match("~[bcdfghjklmnpqrstvwxyz]{4,}~", $string)......
share|improve this answer
I would add an i after the pattern to make it case-insensitive. – Ben James Nov 5 '09 at 9:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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