What characters have to be escaped within a [] in a regular
expression? I was a bit taken aback by the following:
irb(main):001:0> a = '!#$%^&(()_GHF$%#$^%&;2~)+|{}|{\’
=> "!#$%^&(()_GHF$%#$^%&;2~)+|{}|{\"
irb(main):002:0> a.gsub(/[[email protected]#$%^&+={}|\]/, ‘_’)
SyntaxError: compile error
(irb):2: parse error, unexpected $undefined.
a.gsub(/[[email protected]#$%^&+={}|\]/, ‘’)
^
(irb):2: parse error, unexpected $undefined.
a.gsub(/[[email protected]#$%^&*+={}|\]/, '’)
^
(irb):2: parse error, unexpected ‘)’, expecting $
from (irb):2
irb(main):003:0> a.gsub(/[[email protected]#$%^&+={}|\]/, '’)
=> "#$(()__GHF$#$;2~__)_____"
irb(main):004:0> a.gsub(/[[email protected]#$%^&+={}|\]/, '’)
=> "(()GHF______;2~__)__"
martin