I am using Outrec Build for reformatting ip file
I want to change all arrangements ending with A with First like B with Second. My problem is i have so many arrangements ending with A,B,C. I tried the code below which is working but i want know can i use wild entried e.g %%A or %%B for this ? Instead of C'AAA' or any other method is there ?
// sysin dd *
Sort fields = copy
Outrec build = ( 1,25,tran=ltou,26,3, -
Change = (c'AAA',C'First'), -
(c'CAA',C'First'), -
(C'ABB',C'Second'),-
Nomatch =(26,3))
/*
Sort fields = copy
Outrec build = ( 1,25,tran=ltou,26,3, -
Change = (c'AAA',C'First'), -
(c'CAA',C'First'), -
(C'ABB',C'Second'),-
Nomatch =(26,3))
/*