473,387 Members | 1,585 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

padding left-justified string fields

I've written a perl program to manipulate data formats so that I can import
data from an estimating software program to an accounting program. Works
just fine, with the following caveat: The record identifier field is
numeric in the estimating program but it can be (and is interpreted as) a
string in the accounting software. Hence, when I bring up project data in
the accounting software, my items look like so:

10
100
110
....
190
20
210
220

These fields MUST be left-justified for importation into the account s/w, so
I am using "@<<<<<<" in my format block. I'd like to be able to pad all
items to four decimal places with zeroes so that I'd end up with:

010
020
030
....
090
100
etc.

Can anyone tell me of a simple way to do this in perl? I've read and read
and read the manpages on printf() and sprintf() but can't seem to figure out
the syntax. Basically I'm printing out 19 fields, the first three are
left-justified (strings) with varying lengths and the rest for the most part
are seven-dot-three numerics. It would have been easier I'm sure to use
printf with some modifiers rather than type in all those "###'s" and
"<<<'s". Can anyone point me to an online resource to figure out printf
with some real world examples?

Thanks

Dave
Jul 19 '05 #1
7 22240
Dave wrote:
I'd like to be able to pad all items to 3 decimal places with zeroes
Can anyone tell me of a simple way to do this in perl?


It's simple.

printf "%03d %4d %s\n", $number1, $number2, $string;

That will make $number1 be padded to three places with zeros
and $number2 padded to four places with spaces, followed
by a string and ending with a newline.
-Joe

Jul 19 '05 #2

"Joe Smith" <Jo*******@inwap.com> wrote in message
news:t8HJc.65901$WX.45392@attbi_s51...
Dave wrote:
I'd like to be able to pad all items to 3 decimal places with zeroes
Can anyone tell me of a simple way to do this in perl?
It's simple.

printf "%03d %4d %s\n", $number1, $number2, $string;

Thanks Joe. Can you tell me how to specify left vs. right-justified with
printf? Also, if I have a 7-dot-3 decimal format, is it possible to specify
the location of the decimal point?

thx

Dave
That will make $number1 be padded to three places with zeros
and $number2 padded to four places with spaces, followed
by a string and ending with a newline.
-Joe

Jul 19 '05 #3
Dave wrote:
[...] Can you tell me how to specify left vs. right-justified
with printf? Also, if I have a 7-dot-3 decimal format, is it
possible to specify the location of the decimal point?


Did you check "perldoc -f sprintf" as suggested in "perldoc -f printf"?

jue
Jul 19 '05 #4

"Joe Smith" <Jo*******@inwap.com> wrote in message
news:t8HJc.65901$WX.45392@attbi_s51...
Dave wrote:
I'd like to be able to pad all items to 3 decimal places with zeroes
Can anyone tell me of a simple way to do this in perl?


It's simple.

printf "%03d %4d %s\n", $number1, $number2, $string;

That will make $number1 be padded to three places with zeros
and $number2 padded to four places with spaces, followed
by a string and ending with a newline.


Okay, that's all good. But my predicament is that I want something like
"10" padded to "010" AND I want it left-justified... the manpage for printf
states "If the 0 and - flags both appear, the 0 flag is ignored." Also, my
input format requires fixed-width fields; hence if I've got "10" and I
choose pad (i.e. printf "%010d") I end up with 0000000010 which I definitely
don't want imported as my string.

I guess maybe I could use printf to pad my values, then format to output
properly re: left-justification, etc.
Jul 19 '05 #5

"Jürgen Exner" <ju******@hotmail.com> wrote in message
news:YO******************@nwrddc03.gnilink.net...
Dave wrote:
[...] Can you tell me how to specify left vs. right-justified
with printf? Also, if I have a 7-dot-3 decimal format, is it
possible to specify the location of the decimal point?


Did you check "perldoc -f sprintf" as suggested in "perldoc -f printf"?

jue

I did. I swear it. I tried many combinations and permutations. I ended up
using a two-step approach: I used printf to pad my values as part of my
array assignment loop, then format/write for justification and field
placement. I could use printf twice, but already had the output format all
set up for write. This approach ended up being the simplest for me, not
being skilled in the ways of printf.

I can see that in the big picture, printf is much more economical (saves
many many keystrokes) and I will probably put some time into broadening my
understanding of it.
Jul 19 '05 #6
Dave wrote:
"Jürgen Exner" <ju******@hotmail.com> wrote in message
news:YO******************@nwrddc03.gnilink.net...
Dave wrote:
[...] Can you tell me how to specify left vs. right-justified
with printf? Also, if I have a 7-dot-3 decimal format, is it
possible to specify the location of the decimal point?


Did you check "perldoc -f sprintf" as suggested in "perldoc -f printf"?

jue


I did. I swear it.


You didn't read all of it.

You've missed the line with "left-justify within the field".
Go back and read it again.
-Joe
Jul 19 '05 #7
Dave wrote:
Okay, that's all good. But my predicament is that I want something like
"10" padded to "010" AND I want it left-justified... the manpage for printf
states "If the 0 and - flags both appear, the 0 flag is ignored."


It appears you did not recognize the significance of this line:

.number "precision": digits after decimal point for
floating-point, max length for string, minimum length
for integer

That line explains what you should expect from
printf "%10.3\n",99;

-Joe
Jul 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: delerious | last post by:
Could someone please take a look at this page: http://home.comcast.net/~delerious1/index11.html The set of links on the left should not have any whitespace between them, and the set of links...
0
by: Red | last post by:
This is apparently an ie display bug, I can't seem to figure out which ie bug this is. a 3 sided border is created by wrapping the 'inner' box in the 'middle' box and padding the 'middle' box...
7
by: Gustaf Liljegren | last post by:
I continued on the example shown earlier today: http://gusgus.cn/test/index.html Now I get some unwanted space in Firefox (the red space just below the first image) which doesn't appear in...
4
by: Wilhelm Kutting | last post by:
hi, when i use the padding-left attribut, i like to overwrite a default value like that ..padding30 {margin-left: 30px;} ..padding0 {margin-left: 0px;} <div class="padding30"> Padding 30...
2
by: Remi Villatel | last post by:
Hi there, I have following CSS definitions: div.limits { margin: 0 20px 0 20px; } div.halfleft { float: left; left: 0; width: 50%;
36
by: phil-news-nospam | last post by:
Here is a simpler (no drop shadows) example of the padding bug I see: http://phil.ipal.org/usenet/ciwas/2006-05-08/buttons-1.html So far I find nothing in the CSS2 document that says I should...
10
by: Alan Silver | last post by:
Hello, In my (seemingly) endless quest to understand CSS, I have yet another problem. Please look at http://www.kidsinaction.org.uk/ph/x.html in Opera, where you will see it how I expected. If...
11
by: sllrphoto | last post by:
A veteran of early html, I've modified my blog template and made it look rather clean (albeit rather plain) when viewed with IE. Ironically, I'm a big Firefox fan, but when viewed in FF, my blog...
3
by: xoinki | last post by:
hi all, I have a DIV element for which a table is appended.. CSS for this div element is.. .optiondiv { display:block; padding: 0px 30px; padding-left: 30px; padding-right:...
6
by: maya | last post by:
hi, I recently discovered the hard way that when you had padding-right or padding-left to a div it increases the with of the div... how do you add left-padding or right-padding to a div w/o...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.