Examples: StrCompare function
The following example is specific to Windows™:
' The following results are for LotusScript in English,
' running on Windows.
Print StrCompare("abc", "ab", 0) ' Prints 1
Print StrCompare("ab", "abc", 0) ' Prints -1
Print StrCompare("AB", "ab", 1) ' Prints 0
Print StrCompare("AB", "ab", 2) ' Prints -1