f$IsStringNE (f$IstTextUngleich)
f$IsStringNE (f$IstTextUngleich)
This function checks if two strings are not the same. Unlike a direct comparison (operator "!="), trailing spaces are ignored.
The function is case-sensitive. If the comparison is to be made independent of case, the text must first be converted using f$Upper or f$Lower.
Syntax: | CompResult = f$IsStringNE( Text1, Text2 ) | ||
| Argument | Type | Meaning |
| Text1 | String |
|
| Text2 | String |
|
Result: | Logical | 1 for two unequal strings, otherwise 0 | |
Example: | CompRes = f$IsStringNE( 'abc ', 'abc' ) → CompRes = 0 | ||