Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ArgumentTypeDescription
stringStringThe string to search
stringToLookForStringThe string to look for

Examples

contains("Hello PhixFlow", "Phix")

contains() finds a match and returns 1.


contains("Hello PhixFlow", "phix")

contains() does not find a match and returns 0.

...