_STRICMP

From QB64 Wiki
Revision as of 17:08, 9 September 2017 by imported>SMcNeill (style guidelines)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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



Navigation:
Go to Keyword Reference - Alphabetical
Go to Keyword Reference - By usage
Go to Main WIKI Page