vote up 0 vote down star

I want to match a string that includes the characters 0-9.-,[], something like this:

return true if str =~ /\A[0-9.-,\[\]]*\Z/

Which works except it doesn't seem to match the braces, how do I match those?

flag

2 Answers

vote up 7 vote down check

You need to escape the . and - characters:

str =~ /\A[0-9\.\-,\[\]]*\Z/
link|flag
This will also match an empty string. Change * to + to make sure the string has at least one character in the set. – Michael Sepcot Sep 23 at 0:58
4  
"." is not special inside [brackets]. – glenn jackman Sep 23 at 1:55
vote up 3 vote down

turns out it also works w/o escaping the . and - characters like this:

str =~ /\A[\[\]0-9.,-]*\Z/
link|flag
Inside a set using square brackets, dot (.) is no longer special. However, dash (-) is unless it is the last character in the set. – tadman Sep 23 at 14:19

Your Answer

Get an OpenID
or

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