comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » Re: String Formatting
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: String Formatting [message #64822 is a reply to message #64821] Mon, 26 January 2009 11:29 Go to previous messageGo to previous message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
David Fanning writes:

> Before I re-invent the wheel, I thought I would ask.
>
> I wish to write an ASCII text file with two columns of
> text. The first column should be 30 characters wide,
> the second column should be 45 characters wide.
>
> BUT, I wish the data in the columns to be *left*
> justified, not right justified.
>
> What trick to you use, or what formatting string will
> give me this kind of output?

Never mind, you guys are too slow. I wrote my own. :-)

FUNCTION LeftJustify, theString, theWidth

IF N_Elements(theString) EQ 0 THEN RETURN, ""
IF N_Elements(theWidth) EQ 0 THEN theWidth = 50

justifiedString = String(BytArr(theWidth) + 32B)
StrPut, justifiedString, theString
RETURN, justifiedString

END

Cheers,

David

--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: Re: FLOAT images instead of BYTE ones from IDL Object graphics ?
Next Topic: String Formatting

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Thu Oct 09 18:59:27 PDT 2025

Total time taken to generate the page: 0.95693 seconds