I am trying to see if the string s contains any of the symbols in a regex. The regex below works fine on rubular.
s = "asd#d"
s =~ /[~!@#$%^&*()]+/
But in Ruby 1.9.2, it gives this error message:
syntax error, unexpected ']', expecting tCOLON2 or '[' or '.'
s = "asd#d"; s =~ /[~!@#$%^&*()]/
What is wrong?

#was matched. Is that what your rubular showed? – junky Feb 29 '12 at 3:23a$d#d,$and#both match on rubular. – Zabba Feb 29 '12 at 3:28