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