contents   index   previous   next



Clib.strcmpi()

syntax:

Clib.strcmpi(str1, str2)

where:

str1 - first string to compare.

 

str2 - second string to compare

 

return:

< 0 if str1 is less than str2

= 0 if str1 is the same as str2

> 0 if str1 is greater than str2

description:

This method does a caseinsensitive comparison of the characters of str1 with str2 until there is a mismatch or a terminating null byte is reached.

 

see:

Clib.strcmp(), Clib.stricmp(), ==, ===

 

 


Clib.strcpy()