The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

LeftPad - Why should Node.js have all the fun?

VERSION

version 0.003

SYNOPSIS

    use LeftPad;

    $string = leftpad( $string, $min_length );
    $string = leftpad( $string, $min_length, $pad_char );

DESCRIPTION

This module provides left padding, just like you'd find for Node.js.

STABILITY

So that people may depend on this module for their production code, the author commits to never delete it from CPAN.

FUNCTIONS

leftpad

    $string = leftpad( $string, $min_length );
    $string = leftpad( $string, $min_length, $pad_char );

Returns a copy of the input string with left padding if the input string length is less than the minimum length. It pads with spaces unless given a pad character as a third argument.

Zero or negative minimum length returns the input string. Only the first character in the pad-character string is used. Undefined warnings are suppressed so an undefined input string is treated as an empty string.

SEE ALSO

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/dagolden/LeftPad/issues. You will be notified automatically of any progress on your issue.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/dagolden/LeftPad

  git clone https://github.com/dagolden/LeftPad.git

AUTHOR

David Golden <dagolden@cpan.org>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2016 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004