The item referenced in this question does not seem to work for me. I'm using the Regular Expression validator in .net
I need to pass validation if the input field does NOT look like this
"bagdfsdf -CONST"
When I use "(?>!-CONST)$" and ".*(?>!-CONST)$" the regular expression validator never allows it. If I have -CONST at the end or not
Any ideas?