ends_with

Summary

Checks if a string ends with a specific character/sequence.

Usage

input|ends_with( sequence )

Parameters

NameTypeDescriptionRequired
sequence string The string that should be matched. Yes.

Returns

TRUE if there is a match, FALSE otherwise.

Description

This operator checks if the input string ends with a specified sequence of characters. If yes, the operator returns TRUE, otherwise FALSE will be returned.

Examples

Example 1

{'Linux is great!'|ends_with( 'great!' )}

Returns TRUE.

Example 2

{'Linux is great!'|begins_with( 'Linux' )}

Returns FALSE.

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2013 eZ Systems AS (except where otherwise noted). All rights reserved.