2015-12-19 14:52:17 +01:00
|
|
|
title: endswith
|
|
|
|
---
|
|
|
|
summary: True if a string ends with another string (case insensitive).
|
|
|
|
---
|
|
|
|
type: method
|
|
|
|
---
|
|
|
|
signature: other
|
|
|
|
---
|
|
|
|
body:
|
|
|
|
|
|
|
|
This evaluates to true if the [string :ref](../../types/string/)
|
|
|
|
on the left side ends with the string on the right side. This method
|
|
|
|
operates in a case-insensitive manner. For the case-sensitive method
|
|
|
|
see [endswith_cs :ref](../endswith-cs/).
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```html+jinja
|
|
|
|
<ul>
|
|
|
|
{% for item in this.children.filter(F.name.endswith('house')) %}
|
2016-07-22 17:47:09 +02:00
|
|
|
<li>{{ item.name }}</li>
|
2015-12-19 14:52:17 +01:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
```
|