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)

Thanks
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)

Thanks