I need to format a number like this:
sprintf(\"%05d\",$lineNumber)
But I\'m inside a Symfony2 Twig template. So what can I do?
If i was 4 before, then after adding this to your Twig template:
i
"%02d"|format(i)
...it will become 04.
Twig provides lots of filters, take a look at format and number_format.