EndsWith_

Syntax

EndsWith_(Source: String, SubStr: String)

Parameters

Source. Source string.

SubStr. Searched substring.

Description

it returns whether the source string ends with the required 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 ends with the required substring, use the StartsWith_ function.

Example

Formula Result Application
= EndsWith_("Calculator", "Tor")

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.
= EndsWith_("Calculator", "tor    ")

True

See also:

Functions Available in Expression Editor │ Text Functions