StartsWith

Returns true if a string starts with a specified substring.

Usage

StartsWith(string, substring)

string (required)- The string to search.

substring (required)- The substring to search with.

πŸ“˜

EndsWith is case-sensitive. To create a search that is not case-sensitive, combine EndsWith with Lower.

Example

StartsWith("Jane Doe", "Ja")

  • Returns TRUE

Related resources