In my Ruby on Rails app I need a regex that accepts the following values:
{DD}{MM}{YY}{NN}{NNN}{NNNN}{NNNNN}{NNNNNN}- upper and lowercase letters
- the special characters
-,_,.and#
I am still new to regular expressions and I came up with this:
/\A[a-zA-Z._}{#-]*\z/
This works pretty well already, however it also matches strings that should not be allowed such as:
}FOO or {YYY}
Can anybody help?