I'm trying to use regular expressions to match a string that does not contain the sequence of characters of a less than symbol (<) followed by a non space. Here are some examples
Valid - "A new description."
Valid - "A < new description."
Invalid - "A <new description."
I can't seem to find the right expression to get a match. I'm using the Microsoft Regular Expression validator, so I need it to be a match and not use code to negate the match.
Any assistance would be appreciated.
Thanks,
Dale