> What is the correct syntax to find and replace all binary zeroes in
> positions 1-34 with spaces and replace all X'41' characters by
> spaces in positions 35-94 and do *both* FINDREP's only when position
> 13 is C'D'?

Peter,

You need two separate IFTHEN statements as you have different START and END
positions. something like this.


 IFTHEN=(WHEN=(13,1,CH,EQ,C'D'),
           FINDREP=(INOUT=(X'00',C' '),
          STARTPOS=01,ENDPOS=34),HIT=NEXT),
 IFTHEN=(WHEN=(13,1,CH,EQ,C'D'),
          FINDREP=(INOUT=(X'41',C' '),
          STARTPOS=35,ENDPOS=94)),


Notice the HIT=NEXT on the first IFTHEN statement.

Thanks,
Kolusu

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to