how can i ignore case to get
“abc”=“ABC” is true?
Hi,
Hope the following expression helps you.
String.Compare("ABC", "abc", StringComparison.InvariantCultureIgnoreCase)=0
Regards,
Hi @Rowley101
If your String is stored in an “Variable” or “Argument” use Variable.tolower or Variable.toupper accordingly and make a comparison which will set to true.
Hope this helps.
Thanks.
can i use .toUpper or .toLower on all values in a given datatable?
i.e dt.toupper
No @Rowley101 , that won’t work to make the entire Data table as upper.
Thanks.