PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Current »

Function: contains()

Returns true (1) if a string contains another string.

Syntax

contains(string, stringToLookFor)

ArgumentTypeDescription
stringStringThe string to search
stringToLookForStringThe string to look for

Examples

contains("Hello PhixFlow", "Cent")

contains() finds a match and returns 1.

contains("Hello PhixFlow", "cent")

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

See Also

  • No labels