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.

Since: PCC 1.0.4, PCC2 1.99.8

See also: Elementary Functions