format.printf ViewHelper <f:format.printf>

A ViewHelper for formatting values with printf. Either supply an array for the arguments or a single value.

See http://www.php.net/manual/en/function.sprintf.php

Examples

Scientific notation

<f:format.printf arguments="{number: 362525200}">%.3e</f:format.printf>
Copied!

Output:

3.625e+8
Copied!

Argument swapping

<f:format.printf arguments="{0: 3, 1: 'Kasper'}">%2$s is great, TYPO%1$d too. Yes, TYPO%1$d is great and so is %2$s!</f:format.printf>
Copied!

Output:

Kasper is great, TYPO3 too. Yes, TYPO3 is great and so is Kasper!
Copied!

Single argument

<f:format.printf arguments="{1: 'TYPO3'}">We love %s</f:format.printf>

Copied!

Output:

We love TYPO3
Copied!

Inline notation

{someText -> f:format.printf(arguments: {1: 'TYPO3'})}

Copied!

Output:

We love TYPO3

Copied!

Arguments

value

DataType
string
Required
false
Description
String to format

arguments

DataType
mixed
Default
array ()
Required
false
Description
The arguments for vsprintf