Topic complex |
Selecting |
Function |
ENTHÄLT |
Short |
Checks if a string is included in another one (out of date) |
Syntax |
string1 ENTHÄLT string2 |
Parameter |
string1, string2 : any strings |
Return |
true if string2 is included in string1 |
See also: |
|
Description |
string2 has to be contained exactly, wild cards are not allowed.
Example:
'Paul' ENTHÄLT 'aul' -> true
'Paul' ENTHÄLT 'PAUL' -> false
ENTHÄLT is equal to HAT and HAS
|