RAD Studio VCL Reference
|
Compares System::UnicodeString to another specified string case insensitively.
function CompareIC(const rhs: UnicodeString&): Integer;
__fastcall int CompareIC(const UnicodeString& rhs) const;
System::UnicodeString::CompareIC compares a System::UnicodeString instance to rhs, without case sensitivity. Use System::UnicodeString::Compare to compare with case sensitivity. The compare operation is controlled by the current Windows locale. The return value is shown below:
Condition |
Return Value |
S1 > S2 |
> 0 |
S1 < S2 |
< 0 |
S1 = S2 |
= 0 |
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|