GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Text::Padding(3) User Contributed Perl Documentation Text::Padding(3)

Text::Padding - simple way of formatting a text

version 1.110170

    my $pad = Text::Padding->new;
    my $string   = 'foo bar baz';
    my $left     = $pad->left  ( $string, 20 );
    my $centered = $pad->center( $string, 20 );
    my $right    = $pad->right ( $string, 20 );

This module provides a simple way to align a text on the left, right or center. If left & right are easy to achieve (see "sprintf()"), i found no cpan module that achieved a simple text centering. Well, of course, Perl6::Form provides it, but it's incredibly slow during startup / destroy time. And Text::Reform was segfaulting during destroy time.

Hence this module, which aims to provide only those 3 methods.

When a string is too long to fit the wanted length, the methods are truncating it. To indicate that the string has been choped, the last character is replaced by an ellipsis (\x{2026} by default). However, it's possible to change this character by whatever ones wants: empty string to disable this behaviour, multi-char string is supported, etc. See Text::Truncate for more information.

    my $centered = $pad->center( $str, $length );

Return a $length-long string where $str is centered, using white spaces on left & right. $str is truncated if too long to fit (see the "ellipsis" attribute).

    my $left = $pad->left( $str, $length );

Return a $length-long string where $str is left-aligned, right being padded with white spaces. $str is truncated if too long to fit (see the "ellipsis" attribute).

    my $right = $pad->right( $str, $length );

Return a $length-long string where $str is right-aligned, left being padded with white spaces. $str is truncated if too long to fit (see the "ellipsis" attribute).

Text::Reform, Perl6::Form, Text::Truncate.

You can also look for information on this module at:

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Text-Padding>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Text-Padding>

  • Open bugs

    <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Text-Padding>

  • Git repository

    <http://github.com/jquelin/text-padding.git>.

  Jerome Quelin

This software is copyright (c) 2011 by Jerome Quelin.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-04-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.