Onetastic Macro Documentation >
>
>
String_StartsWith String_StartsWith
Returns true if the first string starts with the second string, false otherwise.
Syntax
Bool String_StartsWith(
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_StartsWith("The quick brown fox", "the", false)
String_StartsWith("The quick brown fox", "the", true)
|