Endswith
The Endswith() function evaluates whether an input string ends with a specified sequence of characters.
Related functions: Startswith
Syntax:
Endswith(SpecifiedElement, Value)- In the Quintessence Editor (Studio) using Python language, use:
Qx.()Endswith
ⓘ See parameter descriptions
| SpecifiedElement | The input string to evaluate. |
| Value | The text to match against the start of the input string. |
Examples:
The examples provided below are based on fictitious data for illustrative purposes only.
> Example 1: Determine if a string ends with specific text
Formula:
return := Endswith("ABC001", "001"); Result:
| TRUE |
