| [Overview][Classes][Procedures and functions][Index] |
Performs lowercase comparison of values in a string list
Source position: lazutf8classes.pas line 52
function CompareStringListItemsUTF8LowerCase( |
List: TStringList; |
Index1: Integer; |
Index2: Integer |
):Integer; |
List |
|
String list with values for the comparison |
Index1 |
|
Ordinal position for the first string value |
Index2 |
|
Ordinal position for the second string value |
Relative order for the compared values
CompareStringListItemsUTF8LowerCase is an Integer function used to perform lowercase comparison of string values in a string list. List is the TStrings descendant with values for the comparison. Index1 and Index2 specify the ordinal positions in List for strings used in the comparison.
CompareStringListItemsUTF8LowerCase converts the string values to lowercase using UTF8LowerCase, and calls the CompareStr function to perform the comparison. The return value is in the following ranges:
| lazarus-ccr.sourceforge.net |