Returns true if a string starts with a specified substring.
StartsWith(string, substring)
string (required)- The string to search.
substring (required)- The substring to search with.
hashtagπEndsWith is case-sensitive. To create a search that is not case-sensitive, combine EndsWith with Lower.
EndsWith is case-sensitive. To create a search that is not case-sensitive, combine EndsWith with Lower.
StartsWith("Jane Doe", "Ja")
Returns TRUE
Last updated 10 months ago
Was this helpful?