logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Catmandu::Fix::format - replace the value with a formatted (sprintf-like) version

Description

       Create a string formatted by the usual printf conventions of the C library function sprintf.  See
       <http://perldoc.perl.org/functions/sprintf.html> for a complete description.

Name

       Catmandu::Fix::format - replace the value with a formatted (sprintf-like) version

See Also

       Catmandu::Fix , sprintf

perl v5.40.0                                       2025-01-17                         Catmandu::Fix::format(3pm)

Synopsis

          # e.g. number: 41
          format(number,"%-10.10d") # number => "0000000041"

          # e.g. numbers:
          #         - 41
          #         - 15
          format(number,"%-10.10d %-5.5d") # numbers => "0000000041 00015"

          # e.g. hash:
          #        name: Albert
          format(name,"%-10s: %s") # hash: "name      : Albert"

          # e.g. array:
          #         - 1
          format(array,"%d %d %d") # Fails! The array contains only one value, but you request 3 values

          # Test first if the array contains 3 values
          if exists(array.2)
            format(array,"%d %d %d")
          end

See Also