CenterView Help

Skip to end of metadata
Go to start of metadata

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

Compare with Current View Page History

Version 1 Current »

Function: contains()

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

Syntax

contains(string, stringToLookFor)

Argument Type Description
string String The string to search
stringToLookFor String The string to look for

Examples

contains("Hello CenterView", "Cent")

contains() finds a match and returns 1.

contains("Hello CenterView", "cent")

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

See Also

  • No labels