[Solved] Is = a case sensitive or insensitive comparison of strings in Delphi?


Help tells us:

Strings are compared according to the ordinal values that make up the
characters that make up the string.

'A' and 'a' are different symbols, with different ordinal values, so comparison is case-sensitive, of course.

There are special functions like CompareText for insensitive comparisons. Note that case-insensitivity is especially emphasized in descriptions.

1

solved Is = a case sensitive or insensitive comparison of strings in Delphi?