TSC AUTO ID Technology Co., Ltd. 158 Copyright 2013 All Rights Reserved.
STRCOMP( )
Description
Returns -1, 0, or 1, based on the result of a string comparison.
Syntax
STRCOMP(str1$,str2$[,comp])
Required. Any valid string expression.
Required. Any valid string expression.
Optional. Specifies the type of string comparison.
0: Binary comparison. Default.
1: Textual comparison. The comparison is case-insensitive.
str1$ sorts ahead of str2$
Note:
This command has been supported since V6.81 EZ and later firmware.
Example
Sample Code
DOWNLOAD "TEST.BAS"
STR1$ = "ABCD"
STR2$ = "abcd"
result1 = STRCOMP(STR1$,STR2$)
result2 = STRCOMP(STR1$,STR2$,1)
result3 = STRCOMP(STR2$,STR1$)
SIZE 4,1
GAP 0,0
DIRECTION 1
CLS
TEXT 100,10,"3",0,1,1,STR$(result1)+": \["]"+STR1$+"\["] sorts ahead of \["]"+STR2$+"\["]"
TEXT 100,60,"3",0,1,1," "+STR$(result2)+": \["]"+STR1$+"\["] is equal to \["]"+STR2$+"\["]"
TEXT 100,110,"3",0,1,1," "+STR$(result3)+": \["]"+STR2$+"\["] sorts after \["]"+STR1$+"\["]"
PRINT 1
EOP
TEST
See Also
INSTR()