Mendix 7 is no longer supported unless you have Extended Support (for details, please contact Mendix Support). Mendix 7 documentation will remain available for customers with Extended Support until July, 2024.

XPath ends-with

Last modified: August 2, 2022

1 Overview

The ends-with() function checks whether a string attribute ends with a specific string (case-insensitive) as a sub-string.

2 Example

This query returns all customers whose name ends with the sub-string sen:

1
//Sales.Customer[ends-with(Name, 'sen')]

Customers with the name “Jansen” or “Isaacsen” will be returned, for example, because both names end with “sen.”