vote up 4 vote down star
1

I am trying to write to a file from Perl. I just want to write the data in tab delimited format. However, the data that I am writing has varying lengths and is not lining up.

For example I am trying to write something like this:

Name  Education   Fav_Car  MoneyInBank
josh  High School Porche   500
SomeOtherName  PHD  Hyundai   50000

I just want the data to be lined up with the headers that I have on top.

I am outputting the data like so:

 printf FILE ("%s%20s%20s\n", "Name", "Ed", "Car");
 while (($name, $ed, $car) = $sth->fetchrow_array) {
         printf FILE ("%s>>>>>>>>>>>>>%40s%40s\n", $name, $ed, $car);
 };
flag

5 Answers

vote up 9 vote down check

Tab-delimited data (where the fields are not consistent in length) does not line up when opened in a text editor.

Solutions:

  • Open the file in a spreadsheet.
  • Open it in a word processor, select all the text, and define appropriate tab stops. (thanks, Justsalt)
  • In your text editor, set your tab width to a value larger than any of your fields.
  • Use spaces instead of tabs (e.g., printf with field widths, or formats).

For example, you might use

printf("%-15s %-15s %-10s %9s\n", $name, $edu, $car, $cash);

The - after the % causes the field to be left justified. Numbers (like money) are usually right-justified (which is the default).

link|flag
Or open it in a word processor and define appropriate tab stops. – Justsalt Mar 6 at 16:24
vote up 4 vote down

Have a look at the Perl format command.

link|flag
I wouldn't use format for any new projects, use Perl6::Form instead. – Brad Gilbert Mar 7 at 5:00
vote up 1 vote down

The printf does this as in C. For 20 character fields:

printf("%20s%20s%20s$20S\n",$name,$ed,$car,$money);
link|flag
Do those need to be %-20 to left justify? – Daniel LeCheminant Mar 6 at 16:23
how can i make them left justified? – styris Mar 6 at 16:44
@styris: See Daniel L's comment on this very question! – j_random_hacker Mar 7 at 19:28
vote up 3 vote down

Have a look at Perl6::Form CPAN module.

This previous question/answer What Other Languages Have Features And Or Libraries Similar To Perls Format on stackoverflow may help.

/I3az/

link|flag
vote up 1 vote down

In addition to way C's printf you can adjust the width dynamically with "*",

printf FILE ("%*s%*s%*s\n", 20, "Name", length($blah), "Ed", 20, "Car");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.