StartsWith_(Source: String, SubStr: String)
Source. Source string.
SubStr. Searched substring.
It returns whether a source string starts with the searched substring.
Available values:
True. Source string ends with the searched substring.
False. Source string does not end with the searched substring.
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.
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: