vote up 0 vote down star

I'm trying to create a regex for checking values of submitted tags for a free form folksonomy system. Here is what I have now.

if (!preg_match('/([^-\\a-zA-Z0-9._@\'])+/',$proposedtag)) {
    //true, good
    return true;
} else {
    //false, bad characters
    return false;
}

I want to allow: hyphen, backslash, forward slash, a-z, A-Z, 0-9, period, underscore, at sign, and single quote mark, and disallow all others.

I'm pretty sure a negated character class is the way to go on this...

However my code above seems to allow other characters (such as +), and I'm not sure why. Also as a sidenote, I'm not sure if I'm making sure I don't inadvertently allow SQL injections. Any tips?

flag

1 Answer

vote up 2 vote down check

I believe it's an escaping issue with the backslash characters inside your character class. Try this instead, it seems to work better on the tests I fed it. Note the double-escaping on the backslashes (which I moved to the end):

if (!preg_match('/([^\-a-zA-Z0-9._@\'\\\\])+/',$proposedtag)) {
link|flag
This is working for me so far. However I did modify it to this: '/([^\-\/a-zA-Z0-9\._@\'\\\\])+/' to include the forward slash. – jjclarkson Aug 7 at 23:31
I'll run a few more tests before I hit the check mark ;) – jjclarkson Aug 7 at 23:32

Your Answer

Get an OpenID
or

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