doujie2356 2017-04-05 06:46
浏览 103
已采纳

Symfony Twig:从字符串中截断未定义的字符

I got a string from DB that return the address of an user, I want truncate the first part of this leaving only the City and Country.

Stored strig is like:

514 S. Magnolia St. - 32806 - Orlando - FL 

I want it to be:

Orlando - FL

How I can do using Twig? I got the datas fetching an object using Doctrine

public function profileAction($query)
{
    $user = $this->getDoctrine()
    ->getRepository('AppBundle:User')
    ->find($query);

    if (!$user) {
        throw $this->createNotFoundException(
            'User '. $user . ' not found.'
        );
    }

    return $this->render('profile/profile.html.twig', [
        'user_info'=>$user,
        ]);
}

I'm getting the values using regular Twig: {{ user_info.address }}

  • 写回答

1条回答 默认 最新

  • dopuz8728 2017-04-05 07:40
    关注

    If your format of the address is always the same you can rely on the split filter of Twig, which works the same way as explode in PHP

    {{ ('514 S. Magnolia St. - 32806 - Orlando - FL' | split('-', 3))[2] }}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵