This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I need to show decimal numbers in columns with the decimal points aligned. I can format the numbers to 2 decimal places but using tabs to align the columns they are always left justified and I need to show them with right justification. I thought FieldPosition would do it but I can't figure out how to use it.
Michael Dunn
Ranch Hand
Joined: Jun 09, 2003
Posts: 4632
posted
0
I don't know if there's anything in the API, but try this (for fonts like courier)
Stan James
(instanceof Sidekick)
Ranch Hand
Joined: Jan 29, 2003
Posts: 8791
posted
0
I think you can get by with a little less arithmetic:
If you want to generalize this to a reusable routine, you can't always have a pad string of the right number of blanks. This might be worth while:
I left out some details ... what if aPadWith is more than one character long? Would that be useful? Could your string wind up too long? Could we get more efficient than concatenating strings in a loop? I leave these questions to entertain you late into the coding night [ October 06, 2003: Message edited by: Stan James ]
A good question is never answered. It is not a bolt to be tightened into place but a seed to be planted and to bear more seed toward the hope of greening the landscape of the idea. John Ciardi
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.