1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 20:20:25 +00:00
qb64/internal/help/_STRCMP.md

494 B

The _STRCMP function compares the relationship between two strings, comparing upper or lower case.

Syntax

comparison% = _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 evaluation.

See Also