StartsWith_

Syntax

StartsWith_(Source: String, SubStr: String)

Parameters

Source. Source string.

SubStr. Searched substring.

Description

It returns whether a source string starts with the searched substring.

Comments

Available values:

Spaces at the end of the string and substring are ignored. Substring search in the source string is case-sensitive.

To get whether a source string starts from the searched substring, use the EndsWith_ function.

Example

Formula Result Application
= StartsWith_("Calculator", "calc")

False

Expressions can be used in model formulas of modeling container, in formulas of time series database calculated series, in formulas of the modeling container that is a child one for time series database in expression editor.
= StartsWith_("Calculator", "    Calc")

True

See also:

Functions Available in Expression Editor │ Text Functions