How do you specify NOT "!" or " " (blank)? I know I could write these separately, like:
!/\!/ && !/ /
But, I'd like to use the [] capabilities (if that's actually how you would do this). For example, this would MATCH A-Z (as you all probably know):
/[A-Z]/
Can this form be used for NOT? Thanks in advance!!!
!/\!/ && !/ /
But, I'd like to use the [] capabilities (if that's actually how you would do this). For example, this would MATCH A-Z (as you all probably know):
/[A-Z]/
Can this form be used for NOT? Thanks in advance!!!