Method
StrComp
Warning
This item was deprecated in version 2019r2. Please use String.Compare as a replacement.
Description
Makes a binary (case-sensitive) or text (lexicographic) comparison of the two strings passed and returns the result.
Usage
result = StrComp(string1, string2, mode)
Part |
Type |
Description |
---|---|---|
result |
Returns the result of the comparison of string1 and string2. |
|
string1 |
The first string for comparison. |
|
string2 |
The second string for comparison. |
|
mode |
The comparison mode, Binary or Text. |
Notes
The text comparison is lexicographic, not case-insensitive. This means that case will be taken into account if the strings are the same (other than case).
When using Mode 0 (binary), StrComp always compares the bytes of the strings as they are, doing no encoding conversions. It's possible that two strings might look the same on screen but be reported as different in StrComp Mode 0 if they are in different encodings (and, therefore, contain different bytes).
Note
See the ComparisonOptions enumeration for values you can use with StrComp.
Sample code
The following code returns -1 because the two strings are the same in every way except in case:
StrComp("Spam", "spam", REALbasic.StrCompLexical)
The following code returns -1 because in a byte comparison of the two strings, string2 is greater than string1. The ASCII value of "S" is less than the ASCII value of "s".
StrComp("Spammer", "spam", REALbasic.StrCompCaseSensitive)
This code compares two values lexicographically:
Var s1 As String = "happy"
Var s2 As String = "Hello"
Var result As Integer
result = StrComp(s1, s2, REALbasic.StrCompLexical)
' result = 1
Compatibility
All project types on all supported operating systems.