Strcmp
From kwiki
| | This article is written by Konrad, thus using rather nonstandard English:) |
strcmp (DNM Script function)
[edit]
full declaration
int strcmp (string Str1,string Str2,[bool IgnoringCase=FALSE])
[edit]
return value
[edit]
description
The return value indicates the relation of string1 to string2 as follows:
< 0 string1 less than string2 0 string1 identical to string2 > 0 string1 greater than string2
IgnoringCase: if false, the comparison is case-sensitive.
