I am not very proficient in regexes (yet) and would greatly appreciate,
if anyone could help me to do the following:
need to validate boolean data type, the expression should allow
following values:
"0","1","True","False","true","false".
Thank you very much. The True/False can be case insensitive so even
fAlse could be permited, if that eases the expression.
Houdini
IF u have the input text '0', "1","True","False","true","false"
formatted as STRINGS, then u can use OR-logic to allow the 4 values
using Option IgnoreCase= TRUE (ON):
validation pattern would be
^(0|1|true|false)$
meaning that tested input (string) should containg only the OR-ed items
and nothing else