This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% set foo = '123' %} | |
{{ foo matches '/^[\\d]+$/' ? 'Y' : 'N' }} | |
{{ foo matches not '/^[\\d]+$/' ? 'Y' : 'N' }} {# wrong, does not work! #} | |
{{ not (foo matches '/^[\\d]+$/') ? 'Y' : 'N' }} | |
{% set foo = 'abc' %} | |
{{ foo matches '/^[\\d]+$/' ? 'Y' : 'N' }} | |
{{ foo matches not '/^[\\d]+$/' ? 'Y' : 'N' }} {# wrong, does not work! #} | |
{{ not (foo matches '/^[\\d]+$/') ? 'Y' : 'N' }} |