StrCase(x:Expr):Any
Case-sensitive evaluation. By default, string comparisons and substring searches are case-insensitive. The StrCase function causes the expression x to be evaluated in case-sensitive mode. For example,
"a" = "A" % True StrCase("a" = "A") % False
Note that case-sensitivity only applies to operations that happen directly in the expression x. If x calls a user-defined function, that function's body operates case-insensitive again.
See also: Elementary Functions