1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
|
=encoding utf8
=head1 NAME
String::Print - printf alternative
=head1 SYNOPSIS
### Functional interface
use String::Print; # simpelest way
use String::Print qw/printi printp/, %config;
printi 'age {years}', years => 12; # to STDOUT
my $s = sprinti 'age {years}', years => 12; # in variable
# interpolation of arrays and hashes (serializers)
printi 'price-list: {prices}', prices => \@p, _join => "+";
printi 'dump: {c}', c => \%data;
# same with positional parameters
printp 'age %d", 12;
printp 'price-list: %.2f', \@prices;
printp 'dump: %s', \%settings;
my $s = sprintp 'age %d", 12;
# modifiers
printi 'price: {price%.2f}', price => 3.14 * EURO;
# [0.91] more complex interpolation names
printi 'filename: {c.filename}', c => \%data;
printi 'username: {user.name}', user => $user_object;
printi 'price: {product.price €}', product => $db->product(3);
### Object Oriented interface
use String::Print 'oo', %config; # import no functions
my $f = String::Print->new(%config);
$f->printi('age {years}', years => 12);
$f->printp('age %d', 12);
my $s = $f->sprinti('age {y}', y => 12);
my $s = $f->sprintp('age %d', 12);
### via Log::Report's __* functions (optional translation)
use Log::Report; # or Log::Report::Optional
print __x"age {years}", years => 12;
### via Log::Report::Template (Template Toolkit extension)
[% SET name = 'John Doe' %]
[% loc("Dear {name},") %] # includes translation
=head1 DESCRIPTION
This module inserts values into (format) strings. It provides C<printf()>
and C<sprintf()> alternatives via both an object oriented and a functional
interface.
Read in the L</DETAILS> chapter below, why this module provides a better
alternative for C<printf()>. Also, some extended B<examples> can be
found down there. Take a look at them first, when you start using this
module!
=head1 METHODS
See functions L<printi()|String::Print/"FUNCTIONS">, L<sprinti()|String::Print/"FUNCTIONS">, L<printp()|String::Print/"FUNCTIONS">, and L<sprintp()|String::Print/"FUNCTIONS">: you
can also call them as method.
use String::Print 'oo';
my $f = String::Print->new(%config);
$f->printi($format, @params);
# exactly the same functionality:
use String::Print 'printi', %config;
printi $format, @params;
The Object Oriented interface wins when you need the same configuration
in multiple source files, or when you need different configurations
within one program. In these cases, the hassle of explicitly using the
object has some benefits.
=head2 Constructors
When you use this package with functions, then you do not call the
constructor explicitly. In that case, these L<new()|String::Print/"Constructors"> parameters are
added to the C<<use String::Print>> line.
=over 4
=item $class-E<gt>B<new>(%options)
The C<%options> of the constructure configure processing options.
-Option --Default
defaults see modifier docs
encode_for undef
missing_key <warning>
modifiers [ qr/^%\S+/ = \&format_printf]>
serializers <useful defaults>
=over 2
=item defaults => \%map
[1.00] change the defaults for some modifiers. This is a C<%map> of
modifier name to HASH with modifier specific settings.
=item encode_for => \%rules|'HTML'
[0.91] The format string and the inserted values will get encoded according to
some C<%rules>. Function C<encode_entities()> provided by HTML::Entities
is used when you specify the predefined string C<HTML>. See L<encodeFor()|String::Print/"Attributes">
and L</Output encoding>.
=item missing_key => CODE
[0.91] During interpolation, it may be discovered that a key is missing
from the parameter list. In that case, a warning is produced and C<undef>
inserted. May can overrule that behavior.
=item modifiers => ARRAY
Add one or more modifier handlers to power of the formatter. They will
get preference over the predefined modifiers, but lower than the modifiers
passed to C<print[ip]> itself.
=item serializers => HASH|ARRAY
How to serialize data elements.
=back
» example:
my $f = String::Print->new(
modifiers => [ EUR => sub {sprintf "%5.2f e", $_[0]} ],
serializers => [ UNDEF => sub {'-'} ],
encode_for => 'HTML',
);
$f->printi("price: {p EUR}", p => 3.1415); # price: ␣␣3.14 e
$f->printi("count: {c}", c => undef); # count: -
=back
=head2 Attributes
=over 4
=item $obj-E<gt>B<addModifiers>(PAIRS)
The C<PAIRS> are a combination of an selector and a CODE which processes the
value when the modifier matches. The selector is a string or (preferred)
a regular expression. Later modifiers with the same name overrule earlier
definitions. You may also specify an ARRAY of modifiers per L<printi()|String::Print/"FUNCTIONS">
or L<printp()|String::Print/"FUNCTIONS">.
See section L</"Interpolation: Modifiers"> about the details.
=item $obj-E<gt>B<defaults>($modifier)
[1.00] Returns the current defaults for the C<$modifier>.
» example: getting defaults for a modifier
my $def = $sp->defaults('EL');
say "Default max width is ", $def->{width};
=item $obj-E<gt>B<encodeFor>(\%settings|undef|($predefined, %overrule))
[0.91] Enable/define the output encoding. The C<%settings> contain the C<encoding>
CODE and the tag name patterns to C<exclude> from encoding. Output for C<HTML>
is C<$predefined>, but you may C<%overrule> its settings.
Read section L</"Output encoding"> about the details.
=item $obj-E<gt>B<setDefaults>(\%defaults|@defaults)
[1.00] Set the defaults for modifiers, either with a HASH where the key modifier name
maps to a HASH of settings, or a list of PAIRS.
When using the methods in OO style , you can change the defaults at any time. For
functional style, the object is hidden.
» example: setting defaults
$sp->setDefaults(EL => {width => 30}, CHOP => {width => 10});
my %defs = (EL => {width => 30}, CHOP => {width => 10});
$sp->setDefaults(\%defs);
=back
=head2 Printing
The following are provided both as method and as function. The function
version is explained further down on this page, because it reads a bit
easier, but the object version is most flexible.
my $sp = String::Print->new;
$sp->printi([$fh], $format, %data|\%data); # see printi()
$sp->printp([$fh], $format, @params, %options); # see printp()
my $s = $sp->sprinti($format, %data|\%data); # see sprinti()
my $s = $sp->sprintp($format, @params, %options); # see sprintp()
=head4 » Example
use String::Print 'oo'; # do not import the functions
my $sp = String::Print->new(
modifiers => [ EUR => sub {sprintf "%5.2f e", $_[0]} ],
serializers => [ UNDEF => sub {'-'} ],
defaults => [ DT => { standard => 'ISO' } ],
);
$sp->printi("price: {p EUR}", p => 3.1415); # price: ␣␣3.14 e
$sp->printi("count: {c}", c => undef); # count: -
my $s = $sp->sprinti("price: {p EUR}", p => 7); # output in $s
=head1 FUNCTIONS
The functional interface creates a hidden C<String::Print> object, which is
reused in the whole active package. Seperate packages will use different
hidden objects.
You may import any of these functions explicitly, or all together by
not specifying the names.
=head4 » Example
use String::Print; # all
use String::Print 'sprinti'; # only sprinti
use String::Print 'printi', # only printi
modifiers => [ EUR => sub {sprintf "%5.2f e", $_[0]} ],
serializers => [ UNDEF => sub {'-'} ],
defaults => [ DT => { standard => 'ISO' } ];
printi "price: {p EUR}", p => 3.1415; # price: ␣␣3.14 e
printi "count: {c}", c => undef; # count: -
my $s = sprinti "price: {p EUR}", p => 7; # output in $s
=over 4
=item B<printi>( [$fh], $format, %data|\%data )
Calls L<sprinti()|String::Print/"FUNCTIONS"> to fill the C<%data> into C<$format>, and then sends it to
the C<$fh> (by default the selected file handle)
open my $fh, '>:encoding(UTF-8)', $file;
printi $fh, ...
printi \*STDERR, ...
=item B<printp>( [$fh], $format, @positionals, %options )
Calls L<sprintp()|String::Print/"FUNCTIONS"> to fill the C<@positionals> in C<$format>, and
then sends it to the C<$fh> (by default the selected file handle).
=item B<sprinti>($format, %data|\%data|OBJECT, %options)
The C<$format> refers to some string, maybe the result of a translation.
The C<%data> (which may be passed as LIST, HASH, or blessed HASH) contains
a mixture of special and normal variables to be filled in. The names
of the special variables (the C<%options>) start with an underscore (C<_>).
-Option --Default
_append undef
_count undef
_join ', '
_prepend undef
=over 2
=item _append => STRING|OBJECT
Text as STRING appended after C<$format>, without interpolation.
=item _count => INTEGER
Result of the translation process: when Log::Report subroutine __xn is
are used for count-sensitive translation. Those function may add
more specials to the parameter list.
=item _join => STRING
Which STRING to use when an ARRAY is being filled-in as parameter.
=item _prepend => STRING|OBJECT
Text as STRING prepended before C<$format>, without interpolation. This
may also be an C<OBJECT> which gets stringified, but variables not filled-in.
=back
=item B<sprintp>($format, @positionals, %options)
Where L<sprinti()|String::Print/"FUNCTIONS"> uses named parameters --especially useful when the
strings need translation-- this function stays close to the standard
C<sprintf()>. All features of POSIX formats are supported. This
should say enough: you can use C<< %3$0#5.*d >>, if you like.
It may be useful to know that the positional C<$format> is rewritten and
then fed into L<sprinti()|String::Print/"FUNCTIONS">. B<Be careful> with the length of the C<@positionals>:
superfluous parameter C<%options> are passed along to C<sprinti()>, and
should only contain "specials": parameter names which start with '_'.
» example: of the rewrite
# positional parameters
my $x = sprintp "dumpfiles: %s\n", \@dumpfiles, _join => ':';
# is rewritten into, and then processed as
my $x = sprinti "dumpfiles: {_1}\n", _1 => \@dumpfiles, _join => ':';
=back
=head1 DETAILS
Your manual-page reader may not support the unicode used
in some of the examples below.
=head2 Why use C<printi()> to replace C<printf()>?
The C<printf()> function is provided by Perl's CORE; you do not need
to install any module to use it. Why would you use consider using
this module?
=over 4
=item translating
C<printf()> uses positional parameters, where L<printi()|String::Print/"FUNCTIONS"> uses names
to refer to the values to be filled-in. Especially in a set-up with
translations, where the format strings get extracted into PO-files,
it is much clearer to use names. This is also a disadvantage of
L<printp()|String::Print/"FUNCTIONS">
=item pluggable serializers
C<printi()> supports serialization for specific data-types: how to
interpolate C<undef>, HASHes, etc.
=item pluggable modifiers
Especially useful in context of translations, the FORMAT string may
contain (language specific) helpers to insert the values correctly.
=item correct use of utf8
Sized string formatting in C<printf()> is broken: it takes your string
as bytes, not Perl strings (which may be utf8). In unicode, one
"character" may use many bytes. Also, some characters are displayed
double wide, for instance in Chinese. The L<printi()|String::Print/"FUNCTIONS"> implementation
will use Unicode::GCString for correct behavior.
=item automatic output encoding (for HTML)
You can globally declare that all produced strings must be encoded in
a certain format, for instance that HTML entities should be encoded.
=back
=head2 Four components
To fill-in a FORMAT, four clearly separated components play a role:
=over 4
=item 1. modifiers
How to change the provided values, for instance to hide locale
differences.
=item 2. serializer
How to represent (the modified) the values correctly, for instance C<undef>
and ARRAYs.
=item 3. conversion
The standard UNIX format rules, like C<%d>. One conversion rule
has been added 'S', which provides unicode correct behavior.
=item 4. encoding
Prepare the output for a certain syntax, like HTML.
=back
Simplified:
# sprinti() replaces "{$key$modifiers$conversion}" by
$encode->($format->($serializer->($modifiers->($args{$key}))))
# sprintp() replaces "%pos{$modifiers}$conversion" by
$encode->($format->($serializer->($modifiers->($arg[$pos]))))
Example:
printi "price: {price € %-10s}", price => $cost;
printi "price: {price € %-10s}", { price => $cost };
printp "price: %-10{€}s", $cost;
$value = $cost (in €)
$modifier = convert € to local currency £
$serializer = show float as string
$format = column width %-10s
$encode = £ into £ # when encodingFor('HTML')
=head2 Interpolation: keys
A key is a bareword (like a variable name) or a list of barewords
separated by dots (no blanks!)
B<Please> use explanatory key names, to help the translation
process once you need that (in the future).
=head3 Simple keys
A simple key directly refers to a named parameter of the function or method:
printi "Username: {name}", name => 'John';
You may also pass them as HASH or CODE:
printi "Username: {name}", { name => 'John' };
printi "Username: {name}", name => sub { 'John' };
printi "Username: {name}", { name => sub { 'John' } };
printi "Username: {name}", name => sub { sub {'John'} };
The smartness of pre-processing CODE is part of serialization.
=head3 Complex keys
[0.91] In the previous section, we kept our addressing it simple: let's
change that now. Two alternatives for the same:
my $user = { name => 'John' };
printi "Username: {name}", name => $user->{name}; # simple key
printi "Username: {user.name}", user => $user; # complex key
The way these complex keys work, is close to the flexibility of
template toolkit: the only thing you cannot do, is passing parameters
to called CODE.
You can pass a parameter name as HASH, which contains values. This may
even be nested into multiple levels. You may also pass objects, class
(package names), and code references.
In above case of C<user.name>, when C<user> is a HASH it will take the
value which belongs to the key C<name>. When C<user> is a CODE, it will
run code to get a value. When C<user> is an object, the method C<name>
is called to get a value back. When C<user> is a class name, the C<name>
refers to an instance method on that class.
More examples which do work:
# when name is a column in the database query result
printi "Username: {user.name}", user => $sth->fetchrow_hashref;
# call a sub which does the database query, returning a HASH
printi "Username: {user.name}", user => sub { $db->getUser('John') };
# using an instance method (object)
{ package User;
sub new { bless { myname => $_[1] }, $_[0] }
sub name { $_[0]->{myname} }
}
my $user = User->new('John');
printi "Username: {user.name}", user => $user;
# using a class method
sub User::count { 42 }
printi "Username: {user.count}", user => 'User';
# nesting, mixing
printi "Complain to {product.factory.address}", product => $p;
# mixed, here CODE, HASH, and Object
printi "Username: {document.author.name}", document => sub {
return +{ author => User->new('John') }
};
Limitation: you cannot pass arguments to CODE calls.
=head2 Interpolation: Serialization
The 'interpolation' functions have named VARIABLES to be filled-in, but
also additional OPTIONS. To distinguish between the OPTIONS and VARIABLES
(both a list of key-value pairs), the keys of the OPTIONS start with
an underscore C<_>. As result of this, please avoid the use of keys
which start with an underscore in variable names. On the other hand,
you are allowed to interpolate OPTION values in your strings.
There is no way of checking beforehand whether you have provided all
values to be interpolated in the translated string. When you refer to
value which is missing, it will be interpreted as C<undef>.
=over 4
=item strings
Simple scalar values are interpolated "as is"
=item CODE
When a value is passed as CODE reference, that function will get called
to return the value to be filled in.
For interpolating, the following rules apply:
=item SCALAR
Takes the value where the scalar reference points to.
=item ARRAY
All members will be interpolated with C<,␣> between the elements.
Alternatively (maybe nicer), you can pass an interpolation parameter
via the C<_join> OPTION.
printi "matching files: {files}", files => \@files, _join => ', '
=item HASH
By default, HASHes are interpolated with sorted keys,
$key => $value, $key2 => $value2, ...
There is no quoting on the keys or values (yet). Usually, this will
produce an ugly result anyway.
=item Objects
With the C<serialization> parameter, you can overrule the interpolation
of above defaults, but also add rules for your own objects. By default,
objects get stringified.
serialization => [ $myclass => \&name_in_reverse ]
sub name_in_reverse($$$)
{ my ($formatter, $object, $args) = @_;
# the $args are all parameters to be filled-in
scalar reverse $object->name;
}
=back
=head2 Interpolation: Modifiers
Modifiers are used to change the value to be inserted, before
the characters get interpolated in the line. This is a powerful
simplification. Some useful modifiers are already provided by default.
They are also good examples how to write your own.
Let's discuss this with an example.
In traditional (gnu) gettext, you would write:
printf(gettext("approx pi: %.6f\n"), PI);
to get PI printed with six digits in the fragment.
Locale::TextDomain has two ways to achieve that:
printf __"approx pi: %.6f\n", PI;
print __x"approx pi: {approx}\n", approx => sprintf("%.6f", PI);
The first does not respect the wish to be able to reorder the arguments
during translation (although there are ways to work around that) The
second version is quite long. The string to be translated differs
between the two examples.
With C<Log::Report>, above syntaxes do work as well, but you can also do:
# with optional translations
print __x"approx pi: {pi%.6f}\n", pi => PI;
The base for C<__x()> is the L<printi()|String::Print/"FUNCTIONS"> provided by this module. Internally,
it will call C<printi> to fill-in parameters:
printi "approx pi: {pi%.6f}\n", pi => PI;
Another example:
printi "{perms} {links%2d} {user%-8s} {size%10d} {fn}\n",
perms => '-rw-r--r--', links => 7, user => 'me',
size => 12345, fn => $filename;
An additional advantage (when you use translation) is the fact that not
all languages produce comparable length strings. Now, the translators
can change the format, such that the layout of tables is optimal for their
language.
Above example in L<printp()|String::Print/"FUNCTIONS"> syntax, shorter but less maintainable:
printp "%s %2d %-8s 10d %s\n",
'-rw-r--r--', 7, 'me', 12345, $filename;
=head3 Modifier: POSIX format starts with '%'
As shown in the examples above, you can specify a format. This can,
for instance, help you with rounding or columns:
printp "π = {pi%.3f}", pi => 3.1415;
printp "weight is {kilogram%d}", kilogram => 127*OUNCE_PER_KILO;
printp "{filename%-20.20s}\n", filename => $fn;
=head4 POSIX modifier extension '%S'
The POSIX C<printf()> does not handle unicode strings. Perl does
understand that the 's' modifier may need to insert utf8 so does not
count bytes but characters. L<printi()|String::Print/"FUNCTIONS"> does not use characters but
"grapheme clusters" via Unicode::GCString. Now, also composed
characters do work correctly.
Additionally, you can use the B<new 'S' conversion> to count in columns.
In fixed-width fonts, graphemes can have width 0, 1 or 2. For instance,
Chinese characters have width 2. When printing in fixed-width, this
'S' is probably the better choice over 's'. When the field does not
specify its width, then there is no performance penalty for using 'S'.
# name right aligned, commas on same position, always
printp "name: {name%20S},\n", name => $some_chinese;
=head4 POSIX modifier extensions '%d'
The full pattern is pretty complex: C<< %[+ -0]?[0-9]*[_,.]?d >>, POSIX
format style with a few extra features. The middle (optional) digits tell
the minimal size of the integer to be displayed. The optional character
before it says: C<+> will add a '+' sign when positive, 'blank' adds one
blank before the digits when positive, a C<0> pads left with zeros instead
of blanks. Finally, a C<-> means left-align padding blanks on the right.
[0.96] The last pattern is only useful when you print (big) decimals:
add an underscore, comma, or dot on the thousands.
printi "{count%_d}\n", count => 1e9; # 1_000_000_000
printi "{count%,d}\n", count => 1e9; # 1,000,000,000
printi "{count%.d}\n", count => 1e9; # 1.000.000.000
printi "'{v%10.d}'", v => 10000; # ' 10.000';
printi "'{v%10_d}'", v => -10000; # ' -10_000';
printi "'{v%-10.d}'", v => 10000; # '10.000 ';
printi "'{v%-10.d}'", v => -10000; # '-10.000 ';
printi "'{v%+10,d}'", v => 10000; # ' +10,000';
printi "'{v% ,d}'", v => 10000; # ' 10,000';
printi "'{v% ,d}'", v => -10000; # '-10,000';
[1.00] You can set the default C<FORMAT> separator:
use String::Print
defaults => [ FORMAT => { thousands => ',' } ];
# or
my $sp = String::Print->new(
defaults => { FORMAT => { thousands => ',' }},
);
# or
$sp->setDefaults(FORMAT => { thousands => ',' });
=head3 Modifier: BYTES
[0.91] Too often, you have to translate a (file) size into humanly readible
format. The C<BYTES> modifier simplifies this a lot:
printp "{size BYTES} {fn}\n", fn => $fn, size => -s $fn;
The output will always be 5 characters. Examples are "999 B", "1.2kB",
and " 27MB".
=head3 Modifier: HTML
[0.95] interpolate the parameter with HTML entity encoding.
=head3 Modifiers: YEAR, DATE(), TIME, and DT()
[0.91] A set of modifiers help displaying dates and times. They are a
little flexible in values they accept, but do not expect miracles: when
it get harder, you will need to process it yourself.
The actual treatment of a time value depends on the value. Four
different situations:
=over 4
=item 1. numeric
A pure numeric value is considered "seconds since epoch", unless it
is smaller than 21000000, in which case it is taken as date without
separators.
=item 2. DateTime object
[1.00] Use a DateTime object to provide the value. This way, the
format does not need to know whether the date is specified as object or
as string.
my $now = DateTime->now;
printi "{t YEAR}", t => $now; # works for DateTime, epoch and string
printi "{t.year YEAR}", t => $now; # same effect, DateTime only
printi "{t.year}", t => $now; # will also work, not as nice
=item 3. date format without time-zone
The same formats are understood as in the next option, but without
time-zone information. The date is processed as text as if in the
local time zone, and the output in the local time-zone.
=item 4. date format with time-zone
By far not all possible date formats are supported, just a few common
versions, like
2017-06-27 10:04:15 +02:00
2017-06-27 17:34:28.571491+02 # psql timestamp with zone
20170627100415+2
2017-06-27T10:04:15Z # iso 8601
20170627 # only for YEAR and DATE
2017-6-1 # only for YEAR and DATE
12:34 # only for TIME
The meaning of C<05-04-2017> is ambiguous, so not supported. Milliseconds
get ignored.
When the provided value has a timezone indication, it will get
converted into the local timezone of the observer.
=back
The output of C<YEAR> is in format 'YYYY', where C<TIME> produces 'HH:mm:ss'.
C<DT> and C<DATE> are configurable.
The DT modifier can produce different formats:
DT(ASC) : %a %b %e %T %Y asctime output (not on Windows)
DT(FT) : %F %T YYYY-MM-DD HH:MM:SS (default)
DT(ISO) : %FT%T%z iso8601
DT(RFC822) : %a, %d %b %y %T %z email old
DT(RFC2822) : %a, %d %b %Y %T %z email newer
DT(RFC5322) : %a, %d %b %Y %T %z email newest [0.96]
DT(%F-%T) [1.02] any own format
You may suggest additional formats, or add your own modifier. For your own
format: be warned that C<%F> and C<%T> are not supported on some Windows
versions (but the difference is hidden by Perl >5.38).
[1.02] Also, the DATE modifier can produce different formats:
DATE(-) : %Y-%m-%d
DATE(/) : %Y/%m/%d
DATE(%d-%m-%Y) any own pattern
DATE(%m-%d-%Y) better not use this broken order
Other fields than C<%Y>, C<%m>, and C<%d> are not supported. Other characters
are left untouched.
The defaults are:
DATE => { format => '-' },
DT => { format => 'FT' },
=head3 Modifier: //word, //"string", //'string'
[0.91] By default, an undefined value is shown as text 'C<undef>'. Empty
strings are shown as nothing. This may not be nice. You may want to
be more specific when a value is missing.
"visitors: {count //0}"
"published: {date DT//'not yet'}"
"copyright: {year//2017 YEAR}
Modifiers will usually return C<undef> when they are called with an
undefined or empty value. By the right order of '//', you may product
different kinds of output:
"price: {price//5 EUR}"
"price: {price EUR//unknown}"
=head3 Modifier: '=' (show name)
[0.96] As (always trailing) modifier, this will show the interpolated
name before the value. It might simplify debugging statements.
"visitors: {count=}", count => 1; # visitors: count=1
"v: {count %-8,d =}X", count => 10000; # v: count=10,000␣␣X
=head3 Modifier: EL or EL($width, [$replace])
[1.00] When the string is larger than C<$width> columns, then chop it
short and add a 'mid-line ellipsis' character: C< ⋯ >. You may also
pick another replacement string. The comma is optional
Attention: "columns" not "characters": it is aware of wide fonts, like
chinese characters (see C<%S> above). The default ellipsis is also two
columns wide.
"Intro: {text EL(10)}"; # Intro: 12345678⋯
"Intro: {text EL(10,⋮)}"; # Intro: 123456789⋮
"Intro: {text EL(10⋮)}"; # Intro: 123456789⋮
"Intro: {text EL(10,XY)}"; # Intro: 12345678XY
"Intro: {text EL(10XY)}"; # Intro: 12345678XY
The defaults for EL are '20' and '⋯' (mid-dots). You can changes these
with L<setDefaults()|String::Print/"Attributes">:
$sp->setDefaults(EL => { width => 10, replace => '⋮' });
$sp->printi("Intro: {text EL}"); # Intro: 12345678⋯
=head3 Modifier: CHOP or CHOP($width, [$units])
[1.00] When the string is larger than C<$width> columns (defaults to
20), then chop it short and add C<< [+42] >>: the number of character
chopped off. The C<$width> is the size of the result string.
The comma is optional.
"Intro: {text CHOP(10)}"; # Intro: 12345[+42]
"Intro: {text CHOP(19 chars)}"; # Intro: 1234578[+33 chars]
"Intro: {text CHOP(19, chars)}"; # Intro: 1234578[+33 chars]
The same effect can be reached by setting the defaults
$sp->setDefaults(CHOP => +{width => 19, units => ' chars'});
$sp->printi("Intro: {text CHOP}", text => $t); # Intro: 1234578[+33 chars]
Other defaults are C<head> (C<<[>>) and C<tail> (C<<]>>).
$sp->setDefaults(CHOP => +{head => '«', tail => '»'});
$sp->printi("Intro: {text CHOP}", text => $t); # Intro: 1234578«+12»
=head3 Modifier: UNKNOWN or UNKNOWN($width)
[1.01] When you need to interpolate a value which is unknown and potentially
unsafe, then use this. For instance, you produce an internal error message
to report that a method is used incorrectly:
sub openFolder
{ my ($self, $folder) = @_;
blessed $folder && $folder->isa('Mail::Box')
or printi "ERROR: expected a Mail::Box, got a {t UNKNOWN}.",
t => $folder;
}
Now, this C<$folder> parameter is clearly wrong. But what is it? Did we
pass a wrong object type? Did we pass a string? An ARRAY maybe?
The C<UNKNOWN> modifier distibuishes the following:
=over 4
=item * undefined values will be shown as the UNDEF serializer does;
=item * objects will be represented by their type;
=item * references will show the first part of their Data::Dumper dump; and
=item * the leading parts of strings will be shown between double quotes.
=back
Care is taken that weird characters are escaped. The shortening uses the
C<trim> setting: either C<'EL'> (default) or C<'CHOP'>.
=head3 Private modifiers
You may pass your own modifiers. A modifier consists of a selector and
a CODE, which is called when the selector matches. The selector is either
a string or a regular expression.
# in Object Oriented syntax:
my $f = String::Print->new(
modifiers => [ qr/[€₤]/ => \&money ],
);
# in function syntax:
use String::Print 'printi', 'sprinti',
modifiers => [ qr/[€₤]/ => \&money ];
# the implementation:
sub money$$$$)
{ my ($formatter, $modif, $value, $args) = @_;
$modif eq '€' ? sprintf("%.2f EUR", $value+0.0001)
: $modif eq '₤' ? sprintf("%.2f GBP", $value/1.16+0.0001)
: 'ERROR';
}
Using L<printp()|String::Print/"FUNCTIONS"> makes it a little shorter, but will become quite
complex when there are more parameter in one string.
printi "price: {p€}", p => $pi; # price: 3.14 EUR
printi "price: {p₤}", p => $pi; # price: 2.71 GBP
printp "price: %{€}s", $pi; # price: 3.14 EUR
printp "price: %{₤}s", $pi; # price: 2.71 GBP
This is very useful in the translation context, where the translator can
specify abstract formatting rules. As example, see the (GNU) gettext
files, in the translation table for Dutch into English. The translator
tells us which currency to use in the display.
msgid "kostprijs: {p€}"
msgstr "price: {p₤}"
Another example. Now, we want to add timestamps. In this case, we
decide for modifier names in C<\w>, so we need a blank to separate
the parameter from the modifer.
=head3 Stacking modifiers
You can add more than one modifier. The modifiers detect the extend of
their own information (via a regular expression), and therefore the
formatter understands where one ends and the next begins.
The modifiers are called in order:
printi "price: {p€%9s}\n", p => $p; # price: ␣␣␣123.45
printi "!{t TIME%10s}!", t => $now; # !␣␣12:59:17!
printp "price: %9{€}s\n", $p; # price: ␣␣␣123.45
printp "!%10{TIME}s!", $now; # !␣␣12:59:17!
=head2 Output encoding
[0.91] This module is also used by Log::Report::Template, which is used
to insert (translated) strings with parameters into HTML templates.
You can imagine that some of the parameter may need to be encoded to
HTML in the template, and other not.
=head3 Example with Log::Report::Template
In pure Template Toolkit, you would write
# in your TT-template
<div>Username: [% username | html %]</div>
# in your code
username => $user->name,
With plain L<String::Print|String::Print> with output encoding enabled, you can do:
# in your TT-template
<div>[% show_username %]</div>
# in your code with encodeFor('HTML')
show_username => printi("Username: {user}", user => $user->name),
# or
show_username => printp("Username: %s", $user->name),
That does not look very efficient, however it changes for the good when
this is combined with L<Log::Report::Lexicon> (translations) You can
either do:
# in your TT-template
<div>[% show_username %]</div>
# in your code with encodeFor('HTML')
show_username => __x("Username: {user}", user => $user->name),
Shorter:
# in your TT-template with encodeFor('HTML')
<div>[% loc("Username: {user}", user => username) %]</div>
# in your code
username => $user->name,
Even shorter:
# in your TT-template with encodeFor('HTML')
<div>[% loc("Username: {user.name}", user => userobj) %]</div>
# in your code
userobj => $user,
Shortest:
# in your TT-template with encodeFor('HTML')
<div>[% loc("Username: {user.name}") %]</div>
# in your code
user => $user,
Shorter that the original, and translations for free!
More examples in Log::Report::Template.
=head3 Output encoding exclusion
In some cases, the data which is inserted is already encoded in the
output syntax. For instance, you already have HTML to be included.
The default exclusion rule for HTML output is C<< qr/html$/i >>, which
means that all inserted named parameters, where the name ends on C<html>
will not get html-entity encoded.
This will work by default:
# with encodeFor('HTML')
printp "Me & Co: {name}, {description_html}",
name => 'RenE<eacute>', description_html => $descr;
This may result in:
Me E<amp>amp; Co: RenE<amp>eacute;, <font color="red">new member</font>
Better not to have HTML in your program: leave it to the template. But
in some cases, you have no choice.
=head2 String::Print compared to other modules on CPAN
There are a quite a number of modules on CPAN which extend the functionality
of C<printf()>. To name a few:
L<String::Format|https://metacpan.org/dist/String-Format>,
L<String::Errf|https://metacpan.org/dist/String-Errf>,
L<String::Formatter|https://metacpan.org/dist/String-Formatter>,
L<Text::Sprintf::Named|https://metacpan.org/dist/Text-Sprintf-Named>,
L<Acme::StringFormat|https://metacpan.org/dist/Acme-StringFormat>,
L<Text::sprintf|https://metacpan.org/dist/Text-sprintfn>,
L<Log::Sprintf|https://metacpan.org/dist/Log-Sprintf>, and
L<String::Sprintf|https://metacpan.org/dist/String-Sprintf>.
They are all slightly different.
When the C<String::Print> module was created, none of the modules
mentioned above handled unicode correctly. Global configuration
of serializers and modifiers is also usually not possible, sometimes
provided per explicit function call. Only C<String::Print> cleanly
separates the roles of serializers, modifiers, and conversions.
C<String::Print> is nicely integrated with Log::Report.
=head1 SEE ALSO
This module is part of String-Print version 1.02,
built on December 09, 2025. Website: F<http://perl.overmeer.net/CPAN/>
=head1 LICENSE
For contributors see file ChangeLog.
This software is copyright (c) 2016-2025 by Mark Overmeer.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
|