f$IsStringEQ (f$IstTextGleich)
f$IsStringEQ (f$IstTextGleich)
This function checks if two strings are 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$IsStringEQ( Text1, Text2 ) | ||
| Argument | Type | Meaning |
| Text1 | String |
|
| Text2 | String |
|
Result: | Logical | 1 for two equal strings, otherwise 0 | |
Example: | CompRes = f$IsStringEQ( 'abc ', 'abc' ) → CompRes = 1 | ||