Hi Friends,
Can any one knows, which character can be used to continue the code in REXX langueage ....
Code:
000106 IF SUBSTR(DATA,6,3) = 'G1I' | SUBSTR(DATA,6,3) = 'G2I'
000107 SUBSTR(DATA,6,3) = 'GEE' | SUBSTR(DATA,6,4) = 'G1BV'
000108 SUBSTR(DATA,6,4) = 'G1YZ' THEN
here I want use 5 'substr' function in IF condition....
Please advice me.....