Check string to see if it DOES NOT start with "x" Check string to see if it DOES NOT start with "x"

HI @nmjvk

You can try with Regex Expression

System.Text.RegularExpressions.Regex.IsMatch(YourInputString,"^x|^X")

image

image

Regards
Gokul