StartsWith
Last updated
Checks if a value starts with a search string
StartsWith("Central market", "Central") → true
StartsWith("123", "9") → falseStartWith(string, search, [isCaseSensitive])
string - A text value to search in
search - Text to search for
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
Last updated