1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00

Delete _STRCMP.md

This commit is contained in:
Cory Smith 2022-12-26 13:39:43 -06:00
parent 2a59fa83d6
commit 693849bd67

View file

@ -1,17 +0,0 @@
The [_STRCMP](_STRCMP) function compares the relationship between two strings, comparing upper or lower case.
## Syntax
> comparison% = [_STRCMP](_STRCMP)(string1$, string2$)
## Description
* Function returns -1 when string1$ is less than string2$, 0 when equal or 1 when string1$ is greater than string2$.
* Upper case letters are valued less than lower case letters in the [ASCII](ASCII) evaluation.
## See Also
* [_STRICMP](_STRICMP)
* [STR$](STR$)
* [STRING](STRING)
* [ASCII](ASCII)