i'm writing my anti spam/badwors filter and i need if is possible,
to match (detect) only words formed by mixed characters like: fr1&nd$ and not friends
is this possible with regex!?
best regards!
|
feedback
|
|
Of course it's possible with regex! You're not asking to match nested parentheses! :P But yes, this is the kind of thing regular expressions were built for. An example:
This will match all of the following:
It will not match this:
Which I believe is what you want. How it works:
If I may be allowed to suggest a better strategy, in Perl you can store a regex in a variable. I don't know if you can do this in PHP, but if you can, you can construct a list of variables like such:
Or:
So that way, you can match "friend" in all its permutations with:
Or:
Granted, the second one looks unnecessarily verbose, but that's PHP for you. I think the second one is probably the best solution, since it stores them all in a hash, rather than all as separate variables, but I admit that the regex it produces is a bit ugly. | |||||||
feedback
|
|
It is possible, you will not have very pretty regex rules, but you can match basically any pattern that you can describe using regex. The tricky part is describing it. I would guess that you would have a bunch of regex rules to detect bad words like so: To detect fr1&nd$, friends, fr*nd you can use a regex like:
Doing something like this for each rule will find all the variations of possible characters in the brackets. Pick up a regex guide for more info. (I'm assuming for a badwords filter you would want | |||
feedback
|
|
Didn't test this thoroughly, but this should do it:
| |||||||
|
feedback
|
|
You could build some regular expressions like the following:
This will match any sequence of one or more letters (
| ||||
|
feedback
|