STARTSWITH function

Synopsis
This function returns whether a string matches the beginning of a second string.
Variations
STARTSWITH(SearchedString, SearchString)
Returns whether a string matches the beginning of the specified string.
Parameters
SearchedString

Specifies the string to be searched.

Supported types: String.
SearchString

Specifies the string to for which to search. When SearchString is empty, TRUE is always returned.

Supported types: String.
Returns
Returned types: Boolean.
Examples
1.

The following example returns True.

STARTSWITH("Matrox Design Assistant", "Matrox")