Learning Perl

Learning PerlSearch this book
Previous: 15.2 Extracting and Replacing a SubstringChapter 15
Other Data Transformation
Next: 15.4 Advanced Sorting
 

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, it's as easy as this:

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

See the sprintf entry in Chapter 3 of Programming Perl, and the printf (3) manpage (if you have it) for a description of the arguments required by sprintf.


Previous: 15.2 Extracting and Replacing a SubstringLearning PerlNext: 15.4 Advanced Sorting
15.2 Extracting and Replacing a SubstringBook Index15.4 Advanced Sorting



Banner.Novgorod.Ru