Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Padding with \s

by busunsl (Vicar)
on Sep 13, 2002 at 13:30 UTC ( [id://197570]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $var = 'LR20SR37PD30LR23CR23BT01H';
    $var .= ' ' x 40 - length($var);
    
  2. or download this
    my $var = 'LR20SR37PD30LR23CR23BT01H';
    $var = substr($var . ' ' x 40, 0, 40);
    
  3. or download this
    my $var = 'LR20SR37PD30LR23CR23BT01H';
    $var = sprintf '%-40s', $var;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://197570]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-26 05:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found