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 }}