I'm writing a regexp to pick out punctuation in strings and I'm getting some behavior I don't expect:
ix = regexp('FGFR4','[~!@#$%^&*()-=+{}\|;:''",<.>/?\[]')
ix =
[5]
ix = regexp('FGFR4','[~!@#$%^&*()-+{}\|;:''",<.>/?\[]') %note, the '=' is gone
ix =
[]
So it appears that '=' is matching the number 4. What I expect is it only to match the '=' sign as so:
ix = regexp('FOO=SPAM','[~!@#$%^&*()-=+{}\|;:''",<.>/?\[]')
ix =
[4]
What's going on here?