vote up 3 vote down star

In my user model, I have an attribute called "nickname" and validates as such:

validates_format_of :nickname, :with => /[a-zA-Z0-9]$/, :allow_nil => true

However, it is currently letting this string pass as valid:

a?c

I only want to accept alphanumeric strings - does anyone know why my regular expression is failing? If anybody could suggest a better regular expression, I'm all ears.

flag
If you were curious, your regex sinply says that the last character must be alphanumeric. – Ben Doom Oct 14 '08 at 20:15
Removing rails tag, nothing in this question really refers to rails or even ruby. – Brad Gilbert Oct 16 '08 at 3:53

2 Answers

vote up 8 vote down check

You need to anchor the pattern on both sides:

/^[a-zA-Z0-9]+$/
link|flag
That's limited to one character. – Joel Coehoorn Oct 14 '08 at 19:05
Yep, just fixed that. – Robert Gamble Oct 14 '08 at 19:05
Yup, that change works in my code as well. Thanks! – Allan L. Oct 14 '08 at 19:13
Robert, I apologize for not marking your answer as the answer I accepted previously. I didn't realize all I had to do was click on the check mark. Again, my apologies. – Allan L. Jan 5 at 12:35
vote up 16 vote down

That will match true if the string ends with a valid character. No validation on anything in the middle. Try this:

^[a-zA-Z0-9]*$
link|flag
You probably want a + not a *, as it is, it will match an empty string. – Dan Oct 14 '08 at 19:06
The "*" before the "$" fixed everything. I had the "^" in there previously, but I took it out because it helped passed some of my specs. thank you so much for responding so quickly! – Allan L. Oct 14 '08 at 19:07
I considered +, but part of the original question was "allow_nil: true", which indicated to me that an empty string should be okay. – Joel Coehoorn Oct 14 '08 at 19:13

Your Answer

Get an OpenID
or

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