vote up 2 vote down star

Hello,

I would like to validate my users, so they can only use a-z and - in their username.

validates_format_of :username, :with => /[a-z]/

However this rule also allows spaces ._@

Username should use only letters, numbers, spaces, and .-_@ please.

Any ideas?

Best regards. Asbjørn Morell

flag

69% accept rate
This is what I came up with: validates_format_of :username, :with => /^[-a-z\d_]+$/ – atmorell Jul 17 at 13:11

4 Answers

vote up 6 vote down

You may need to say the whole string must match:

validates_format_of :username, :with => /^[-a-z]+$/

You may also need to replace ^ with \A and $ with \Z, if you don't want to match a newline at the start/end. (thanks to BaroqueBobcat)

Appending an i will cause it to match in a case-insensitive manner. (thanks to Omar Qureshi).

(I also originally left off the +: thanks to Chuck)

link|flag
3  
agreed but as /^[-a-z]$/i for case insensitivity – Omar Qureshi Jul 16 at 8:49
You example always returns invalid :/ – atmorell Jul 16 at 19:17
test it in irb .. re = /^[-a-z]$/i; "foo" =~ re – Omar Qureshi Jul 16 at 19:36
1  
It needs to be /^[-a-z]+$/ (with an i after the second slash if you want it case-insensitive). Without a +, you're saying it has to be exactly one character long. – Chuck Jul 16 at 19:41
1  
^ and $ match the beginnings and ends of lines. To ensure no newlines use \A \Z which match the beginning and end of the string. – BaroqueBobcat Jul 16 at 23:08
vote up 2 vote down

The [] may contain several "rules" so [a-z0-9] gives lowercase letters and numbers

the special character - must go at the start of the rule

Does

[-a-z0-9@_.]

give the effect you want?

link|flag
[-A-Za-z0-9@_.] <-- with uppercase, just in case. – beggs Jul 16 at 8:26
he only asked for a-z ;-) – djna Jul 16 at 8:53
I would rather mark it as case insensitive. – Svish Jul 16 at 8:53
Hmmm no sorry, it gives me Username should use only letters, numbers, spaces, and .-_@ please. – atmorell Jul 16 at 19:15
vote up 0 vote down

Simply change the regular expression to match all characters your specification states (\w covers all alphanumeric characters -- letters and numbers -- and an underscore).

validates_format_of :username, :with => /[\w \.\-@]+/
link|flag
Your example is pretty close however the user can still use . and spaces. my.......new user – atmorell Jul 16 at 19:19
There is no limit here to prevent longer strings matching. This will match any string that contains at least one of the matched characters. – Matthew Schinckel Jul 17 at 1:48
vote up 0 vote down
validates_format_of :username, :with => /^[\w\-@]*$/

Note the *, which means '0 or more'

link|flag
Same problem... spaces and . is still allowed :/ – atmorell Jul 16 at 19:20

Your Answer

Get an OpenID
or

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