Function CSPString::CompareNoCase()
Description:
Performs a case insensitive comparison between this string and another one.
 |
Prototype:
long CompareNoCase(const CSPString& strString) const;
Arguments:
- const CSPString& strString [IN]
The string to compare to.
Return value:
If this string is lexicographically greater than the other, it returns a number greater than zero.
If this string is lexicographically less than the other, it returns a number less than zero.
Otherwise, if the two strings are the same, it returns zero.
|
|