The following marco code works perfectly but put the entire line into the variable myline.
Is there a way to take only a portion of the line and place it into the variable ?
And yes I looked into the fine manual and in "Edit and Edit Macros z/OS Version 1 Release 5.0"
/* REXX */
ADDRESS ISREDIT
"MACRO PROCESS"
"FIND FIRST 'abc'"
"(MYLINE) = LINE .ZCSR"
SAY MYLINE
"END"
EXIT
ADDRESS ISREDIT
"MACRO PROCESS"
"FIND FIRST 'abc'"
"(MYLINE) = LINE .ZCSR"
SAY MYLINE
"END"
EXIT