The question here is to delete columns (and not the lines)!
Please try these command in order listed under ISPF/PDF editor and confirm with a reply.
Command ===> reset
Command ===> bounds 66 70
Command ===> change p'^' x'40' ALL
Command ===> reset c
or
Command ===> reset
Command ===> changep'^' x'40' 66 70 ALL
Command ===> reset c
This will change all character (p'^') in columns 66 through 70 to a blank (x'40') in ALL lines. It will leave other colums as is and will not delete lines.
Joined: 26 May 2005 Posts: 30 Location: Northern VA, USA
Similarly, coding
Code:
c p'=' ' ' 66 70 all
will change -anything- contained within columns 66 to 70 to a blank (x'40'). The '=' is the key, it says disregard what is in the column now, whether numeric, character, or undefined, and change it to the given value.