forked from QB64-Phoenix-Edition/QB64pe
-
Notifications
You must be signed in to change notification settings - Fork 0
_STRICMP
Samuel Gomes edited this page Nov 8, 2022
·
1 revision
The _STRICMP function compares the relationship between two strings, ignoring upper or lower case letters.
comparison% = _STRICMP(string1$, string2$)
- Function returns -1 when string1$ is less than string2$, 0 when equal or 1 when string1$ is greater than string2$.
- Alphabet comparisons will be evaluated without regard to the letter case in the 2 strings.