Porovnávací metody
These constants are used by the
Comp function and each time a sort Metody is needed.
For example, in the
Array sort methods, when creating a
Collection,
in the
String Třída methods, and so on.
gb.Binary
|
Binary comparison (This is the default).
|
gb.Text
|
Case unsensitive comparison.
|
gb.Language
|
Comparison according to the current language.
|
gb.Language + gb.Text
|
Case unsensitive comparison according to the current language.
|
gb.Binary
|
Binary comparison (This is the default).
|
gb.IgnoreCase
|
Case unsensitive comparison.
|
gb.Language
|
Comparison according to the current language.
|
gb.Language + gb.IgnoreCase
|
Case unsensitive comparison according to the current language.
|
gb.Natural
|
Natural comparison according to the current language.
|
gb.Natural + gb.IgnoreCase
|
Case unsensitive Natural comparison according to the current language.
|
gb.Like
|
The second string is assumed to be a LIKE pattern. If the first string matches it, then equality is returned.
Otherwise a case unsensitive comparison is done.
|