EndsWith_(Source: String, SubStr: String)
Source. Source string.
SubStr. Searched substring.
it returns whether the source string ends with the required 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 ends with the required substring, use the StartsWith_ function.
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: