fenom/docs/ru/mods/ematch.md

18 lines
538 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Модификатор ematch
==============
Выполняет проверку на соответствие регулярному выражению.
[Подробнее](http://www.php.net/manual/ru/reference.pcre.pattern.syntax.php) о регулярных выражениях.
```
{$string|ematch:$pattern}
```
Ищет в заданном тексте `$subject` совпадения с шаблоном `$pattern`.
```smarty
{if $color|ematch:'/^(.*?)gr[ae]y$/i'}
какой-то оттенок серого ...
{/if}
```