Onetastic Macro Documentation >
>
>
String_Contains String_Contains
Returns true if the first string contains the second string, false otherwise.
Syntax
Bool String_Contains(
String first,
String second,
Bool ignorecase)
Parameters
- String first
- First string to compare.
- String second
- Second string to compare.
- Bool ignorecase
- Ignores the case of the strings if set to true.
Examples
String_Contains("The quick brown fox", "brown", false)
String_Contains("The quick brown fox", "Quick", false)
String_Contains("The quick brown fox", "Quick", true)
|