[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Set of TCompareOption
Source position: ustringh.inc line 58
type TCompareOptions = set of ( |
||
coLingIgnoreCase, |
|
Ignore case linguistically (usually identical to coIgnoreCase) |
coLingIgnoreDiacritic, |
|
Ignore diacritic caharacters |
coIgnoreCase, |
|
Ignore case (usually identical to coLingIgnoreCase) |
coIgnoreKanaType, |
|
Corresponding hiragana and katakana characters compare as equal. |
coIgnoreNonSpace, |
|
Ignore nonspace characters (usually identical to coLingIgnoreDiacritic) |
coIgnoreSymbols, |
|
Ignore symbols and punctuation characters |
coIgnoreWidth, |
|
Ignore half-width and full width characters (used in Chinese and Japanese) |
coLingCasing, |
|
Use linguistic rules for casing, instead of file system rules |
coDigitAsNumbers, |
|
Treat digits as numbers (20 before 120) |
coStringSort |
|
Handle punctuation as symbols |
); |
TCompareOptions is simply a set of TCompareOption enumeration values.
|
How to compare strings |