Navigation :
contains
contains(source: text, pattern: text) 🡒 boolean, const pure function
Returns true
if the source contains an occurrence of the pattern.
source = "Hello World!"
show summary "" a1c2 with
contains(source, "Hello") as "Contains Hello?"
contains(source, "Town") as "Contains Town?"