This should be simple, but I can't figure it out.
Let's say I want to check if my input does not contain the word 'hello'.
In my mind this is the equivalent of [^(hello)]+ but that obviously doesn't work.
This is for a strict parser of tags and therefore I have to exclude whole words. Am I able to do this with regular expressions, or do I have to do it manually?
Cheers,
Rob
Let's say I want to check if my input does not contain the word 'hello'.
In my mind this is the equivalent of [^(hello)]+ but that obviously doesn't work.
This is for a strict parser of tags and therefore I have to exclude whole words. Am I able to do this with regular expressions, or do I have to do it manually?
Cheers,
Rob