Beispiel #1
0
int CMyString::CompareNoCase(CMyString strVal_UP) const	// Compare respect to "strVal", case insensitive
{
	CMyString			strThis_UP = *this;

	strThis_UP.MakeUpper();
	strVal_UP.MakeUpper();

	return strThis_UP.Compare(strVal_UP);
}