L := "hello world"; L[2]; e -------------------------------The operator
IsIn
can be used to test if one string is a substring
of another.
L := "hello world"; "hello" IsIn L; -- one may also write IsIn("hello",L) TRUE -------------------------------