On 2013-10-11 22:35, Mark Dieterich wrote:
[...] val.regex="/bin/[^f][^s][^h]"
It's Monday morning, and I haven't had a second coffee yet, but: I'm not exactly sure that this regex is working the way you expect it to work.
It will match "/bin/bash" (that's ok), it will NOT match "/bin/fsh" (also ok), but it will also NOT match "/bin/ash" or "/bin/foo".
hth, off to get some coffee,