Yes, you will have to write a loop to use the %Scan BIF.
pos = %Scan(NewLine:SearchStr);
DoW pos <> 0;
// do your stuff.
pos = %Scan(NewLine:SearchStr:(Pos + 1);
EndDo;
Michael Schutte
Admin Professional
Bob Evans Farms, Inc.
"The Secret's the Sauce! Enjoy our new Bob-B-Q Pulled Pork Knife & Fork
Sandwich!"
"Kurt Anderson"
<kjanderson@highs
mith.com> To
Sent by: "RPG programming on the AS400 /
rpg400-l-bounces@ iSeries" <rpg400-l@xxxxxxxxxxxx>
midrange.com cc
Subject
07/23/2007 10:38 RE: %scan and the new line
AM character
Please respond to
RPG programming
on the AS400 /
iSeries
<rpg400-l@midrang
e.com>
So if I use %scan, and it's going to stop when it encounters a new line
character, and this is working as designed, I hope someone updates the
help for the BIF. ;) But that's really my question, is this working
as intended? If it is, that means I have to write a loop to scan for
new line characters (assuming that works), and within that scan for the
actual value I seek - ugh, extra work. I don't mind writing code till
my fingerprints are worn away, but not when the help doesn't reflect the
nuances of a function. Maybe I'm just spoiled, as the RPG help is
actually pretty helpful.
Kurt Anderson
Application Developer
Highsmith Inc
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx
[mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of
Peter.Colpaert@xxxxxxxxx
Sent: Monday, July 23, 2007 9:19 AM
To: RPG programming on the AS400 / iSeries
Subject: Re: %scan and the new line character
Kurt,
my guess would be that the opcode you use to scan the stream file, gives
it back to you in chunks delimited by the CR.
That's why it stops at the first CR encountered.
Of course, I could be wrong.
HTH,
Peter Colpaert
Application Developer
PLI - IT - Kontich, Belgium
-----
Yoda of Borg are we. Futile is resistance, assimilated will you be.
-----
"Kurt Anderson" <kjanderson@xxxxxxxxxxxxx> Sent by:
rpg400-l-bounces@xxxxxxxxxxxx
23/07/2007 16:16
Please respond to
RPG programming on the AS400 / iSeries <rpg400-l@xxxxxxxxxxxx>
To
"RPG programming on the AS400 / iSeries" <rpg400-l@xxxxxxxxxxxx>
cc
Subject
%scan and the new line character
I'm reading some data from the IFS. I'm then scanning it for a value,
but it's not working.
Here's the data, without the quotes:
"
blah blah [variable] blah blah
"
So there's a new line or carriage return on the very first line, and at
the end of the 2nd line. The value I'm scanning for is [variable].
When I start the scan in position one, the value is not found. If I
start the scan in position 2, the scan finds the search value. Through
a variety of position testing, it appears to me that once the scan
encounters the new line character, it stops scanning and returns a 0,
not found.
I'm on v5r4. Has anyone encountered this? Does this make sense for
some reason that I'm not thinking of?
Kurt Anderson
Application Developer
--
This is the RPG programming on the AS400 / iSeries (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 is the RPG programming on the AS400 / iSeries (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.
As an Amazon Associate we earn from qualifying purchases.