How to ignore case to check if string values matches or not

Hello @vnsatyasunil

You can convert both the strings to the same case and do a comparison as below.
strVal.ToLower.Equals(strVal2.ToLower)
strVal.ToUpper.Equals(strVal2.ToUpper)

image

Thanks