Page 1 of 1

what is meant by "C 3 P'=' '*' PREV"

PostPosted: Tue Apr 15, 2014 12:51 pm
by Farhaan4mf
Hi,
I need to modify one existing REXX edit macro.
  "COPY '"COPYDSN1"("VAR9")' AFTER .ZCSR" 
  "C 3 P'=' '*' PREV"                     

I can understand that its asking to change column 3 value with '*' . But what does it mean by P'=' .
Actually I need to remove this line, because I DO NOT want to change the column3 value with * . But when I am deleting this particular line from my macro, the macro is going to infinite loop.

Moreover, how does the above code is different from below one
"ISREDIT CHANGE   P'=' '*' 3"

Re: what is meant by "C 3 P'=' '*' PREV"

PostPosted: Tue Apr 15, 2014 2:59 pm
by Blackthorn
Have you read up on Picture Strings in the manual?

Re: what is meant by "C 3 P'=' '*' PREV"

PostPosted: Tue Apr 15, 2014 7:14 pm
by dick scherrer
Hello,

As Blcakthorn mentions, read about Picture Strings (which can be found in the Help for the CHANGE command).

Re: what is meant by "C 3 P'=' '*' PREV"

PostPosted: Tue Apr 15, 2014 7:38 pm
by NicC
And FIND command