Приглашаем посетить
Цветаева (tsvetaeva.lit-info.ru)

[Chapter 15] 15.3 Formatting Data with sprintf( )

PreviousChapter 15
Other Data Transformation
Next
 

15.3 Formatting Data with sprintf( )

The printf function is sometimes handy when used to take a list of values and produce an output line that displays the values in controllable ways. The sprintf function is identical to printf for its arguments, but returns whatever would have been output by printf as a single string. (Think of it as "string printf.") For example, to create a string consisting of the letter X followed by a five-digit zero-padded value of $y, simply use this:

$result = sprintf("X%05d",$y);

See Chapter 6, Basic I/O, or Chapter 3 of Programming Perl for a description of the format strings understood by printf and sprintf.


PreviousHomeNext
15.2 Extracting and Replacing a SubstringBook Index15.4 Advanced Sorting