Can somebody explain why this command append blanks
Command ===> c all '"' '' Scroll ===> CSR
****** ***************************** Top of Data ******************************
=COLS> ----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
000001 "AAAAAAAA"!"BBBBBBBBBBBBBBBBBBBB "!1.!1.!1.!"CCCCCC "!"DDDD"
****** **************************** Bottom of Data ****************************
Result
Command ===> Scroll ===> CSR
****** ***************************** Top of Data ******************************
=COLS> ----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
==CHG> AAAAAAAA!BBBBBBBBBBBBBBBBBBBB !1.!1.!1.!CCCCCC !DDDD
****** **************************** Bottom of Data ****************************
Shouldn’t the result be
Command ===> Scroll ===> CSR
****** ***************************** Top of Data ******************************
=COLS> ----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
000001 AAAAAAAA!BBBBBBBBBBBBBBBBBBBB !1.!1.!1.!CCCCCC !DDDD
****** **************************** Bottom of Data ****************************
//Lasse
This message came from outside your organization.
Thanks, missed that.
Then I have to use Sort or why not a Rexx
//Lasse
To view this discussion on the web visit https://groups.google.com/a/nd.edu/d/msgid/ispf-l-list/OFB06B100E.7CAA3A0E-ON002587A6.0037C54A-862587A6.00382438%40ibm.com.
To make it “quick” I’ll use Sort
OPTION COPY
INREC FINDREP=(INOUT=(C'"',C''))
//Lasse