Twig / PHP - 使用Replace或Regex格式化字符串

时间:2015-04-17 16:35:50

标签: php regex twig

如何在Twigg中格式化字符串:

例如img = 05myphoto-Car.jpg

我需要删除数字前缀和-
我主要使用它来根据文件名输出图像的标题

到目前为止,我已尝试过(来自文档)

{{ img |replace({'.jpg': "", '-' : " "}) }}

输出字符串

05myphoto Car

我也试过{{ replace({'range(0, 9)': ""}) }} // for numeric prefix - did not work

期望输出

`Myphoto Car`

由于

3 个答案:

答案 0 :(得分:4)

迟到总比不上......

只需注册(对我而言是index.php

$app['twig']->addFilter('preg_replace', new Twig_Filter_Function(function ($subject, $pattern, $replacement) {
    return preg_replace($pattern, $replacement, $subject);
}));

然后在视图上:{{myVar|preg_replace('/\\d+/','')}}

请注意,所有反斜杠都必须进行转义,否则,它们将被Twig删除......

答案 1 :(得分:3)

如果您愿意在模板中执行此操作,尽管它更适合作为控制器/服务you can enable the preg_replace filter并使用类似preg_replace('/\d+/','')的数字来删除数字,并另外使用大写过滤器。< / p>

答案 2 :(得分:2)

这对我很有用(Craft CMS):

{# Removes all characters other than numbers and + #}
{{ profile.phone|replace('/[^0-9+]/', '') }}