# Metadata
Platforms: desktop, server, mobile OS: mac, windows, linux, ios, android Introduced: 1.0 Security:
# Syntax
string contains substring
# Params
- string : The string and substring are both strings of characters, or expressions that evaluate to strings. - substring :
# Examples
"ABC" contains "A" -- evaluates to true
"123" contains "13" -- evaluates to false
# Description
If each character of the substring can be found in the string, but the characters are separated, the contains operation evaluates to false.
# Tags
# See