In Regex, if you want to disallow... say... any numbers you would use this:
#Replace(String,"[^0-9]","","ALL"
#
But what if say, you wanted disallow 12, but allow 1 and 2?
For instance... 182 would pass, 1 would pass, but 12 would not pass..
Any ideas?
Thanks,
Tony Did I help?
Vote!
#Replace(String,"[^0-9]","","ALL"
But what if say, you wanted disallow 12, but allow 1 and 2?
For instance... 182 would pass, 1 would pass, but 12 would not pass..
Any ideas?
Thanks,
Tony Did I help?
Vote!