I have a string and it could start with ON or OFF
Regex ADRCheck = new Regex(Regex.Escape(@"^ON|^OFF"));
ADRCheck.IsMatch("ON");
return