In ruby, I need the equivalent of:
[^abc] Any single character except: a, b, or c
but for the whole abc
, so it would read `Any single character except: abc
I've tried things like [^(abc)]
but can't figure the right syntax
In ruby, I need the equivalent of:
[^abc] Any single character except: a, b, or c
but for the whole abc
, so it would read `Any single character except: abc
I've tried things like [^(abc)]
but can't figure the right syntax