1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_STRICMP.md
2022-12-26 14:30:40 -06:00

502 B

The _STRICMP function compares the relationship between two strings, ignoring upper or lower case letters.

Syntax

comparison% = _STRICMP(string1$, string2$)

Description

  • 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.

See Also