Barbara, even though the comment I'd insert into the program to explain
(to myself) what's going on would probably be longer than your 3
instructions, that's still one beautiful, elegant formula. Thank you,
dear.
num = %DEC(string : 63 : 31) * %INTH(10 ** decpos);
val = %EDITC(num : 'X');
val = %subst(val : NUM_LEN - len + 1);
Arthur J. Marino
RockTenn Corporation
(631) 297-2276
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Barbara Morris
Sent: Thursday, March 26, 2009 6:53 PM
To: rpg400-l@xxxxxxxxxxxx
Subject: Re: Using an Expression to control a FOR loop
Arthur Marino wrote:
Speaking of negative numbers, as I've explained earlier, I'm reading
columns in a .csv file, which can contain a leading minus sign (and,
optionally, a decimal point). Then I'm building a character string
that
conforms to the output file's DDS. So I handled the negative value in
the 'coldta' string by purging the decimal point and minus sign, and
then substituting J, K, L, etc. for the last 'digit' before appending
'coldta' to the string.
Can anyone tell me how I could just alter the sign portion of the last
byte to denote 'negative' so I wouldn't need the alternating tables?
The %DEC built-in function will take a string like '-123.45' and return
a numeric value. If you multiply it by 10 to the power of your decimal
places, you'll get a zero-decpos value with the same zoned-decimal data.
If you then use %EDITC 'X' on the zero-decpos value and then
substring, you'll get the result you want.
D len s 10i 0
D decpos s 10i 0
D string s 50a varying
D num s 63S 0
D val s 63A varying
D NUM_LEN c %len(num)
len = 5;
decpos = 0;
string = '-12345';
num = %DEC(string : 63 : 31) * %INTH(10 ** decpos);
val = %EDITC(num : 'X');
val = %subst(val : NUM_LEN - len + 1);
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing
list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/rpg400-l.
This message, including its attachments, constitutes an electronic communication within the meaning of the Electronic Communications Privacy Act, 18 U.S.C. Section 2510. This message is the confidential property of RockTenn, and disclosure is strictly limited to recipients intended by the sender. Unless previously authorized in writing, this message does not constitute an offer, acceptance, or agreement of any kind. This message may contain confidential attorney-client privileged information and attorney work product. If you are not the intended recipient, or responsible for delivering e-mail to the intended recipient, you are advised that use, dissemination, forwarding, printing, or copying of this message is STRICTLY PROHIBITED. If you receive this message in error, please notify the sender immediately by return e-mail and delete the message entirely from your system. Sender is not liable for damage caused by viruses transmitted with this message, or errors or omissions in content caused by transmission.
(c) RockTenn, Norcross, GA.
As an Amazon Associate we earn from qualifying purchases.