| View previous topic :: View next topic |
| Author |
Message |
davidllw
Joined: 12 May 2005
Posts: 4
Location: China
|
| Posted: Thu May 26, 2005 8:47 pm Post subject: Replace the characters with DFSORT? |
|
|
Can we use DFSORT to search the dataset with a key word, and then replace it by the other word we specify?
i.e.
Input File A:
AAABBBCCDDDEEE
CCCAAABB
CEDCCC
run after the DFSORT coding
Ouput File B:
AAABBB11DDDEEE
111AAABB
1ED111
All 'CCC' change to '111'.
Thanks...
David |
|
| Back to top |
|
Frank Yaeger
Joined: 15 Feb 2005
Posts: 4579
Location: San Jose, CA
|
| Posted: Fri May 27, 2005 6:19 am Post subject: |
|
|
You say Quote: All 'CCC' change to '111'. but in your example of input and output you show EVERY 'C' replaced by '1'.
This DFSORT job will give you the output you show by replacing every 'C' with '1'. I've assumed your input file has RECFM=FB and LRECL=80, but you can change the job appropriately for other attributes.
Code:
//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=... input file (FB/80)
//SORTOUT DD DSN=... output file (FB/80)
//SYSIN DD *
OPTION COPY
* Set up ALTSEQ table for TRAN=ALTSEQ.
* X'C3' = 'C'. X'F1' = '1'.
ALTSEQ CODE=(C3F1)
* Use TRAN=ALTSEQ to change 'C' (X'C3') to '1' (X'F1').
OUTREC FIELDS=(1,80,TRAN=ALTSEQ)
/*
|
|
| Back to top |
|
davidllw
Joined: 12 May 2005
Posts: 4
Location: China
|
| Posted: Wed Jun 01, 2005 5:41 pm Post subject: Re: Replace the characters as the Office WORD can do by DFSO |
|
|
| Many Thanks...I'll try it tomorrow...:) |
|
| Back to top |
|
davidllw
Joined: 12 May 2005
Posts: 4
Location: China
|
| Posted: Wed Jun 01, 2005 5:46 pm Post subject: |
|
|
Dear Frank,
I would like to ask one more stupid question. I never use the program highlight below. Is it still the DFSORT?
S1 EXEC PGM=ICEMAN |
|
| Back to top |
|
Frank Yaeger
Joined: 15 Feb 2005
Posts: 4579
Location: San Jose, CA
|
| Posted: Wed Jun 01, 2005 9:31 pm Post subject: |
|
|
| PGM=ICEMAN and PGM=SORT are ways to invoke the primary sort product at your site. If you have DFSORT as the primary sort product at your site, PGM=ICEMAN and PGM=SORT will invoke DFSORT. |
|
| Back to top |
|
davidllw
Joined: 12 May 2005
Posts: 4
Location: China
|
| Posted: Thu Jun 02, 2005 7:52 pm Post subject: Re: Replace the characters as the Office WORD can do by DFSO |
|
|
Frank, Thanks for your reply. I've tried your method. It do work. If I want to make a little change as follows. Can the DFSORT also solve it?
Change all 'C' to 'cat' and all 'B' to 'boys'. It means the length may extend.
i.e.
Input:
CAAAC
AACBBC
Output:
catAAAcat
AAcatboysboyscat
Regards,
David |
|
| Back to top |
|
Frank Yaeger
Joined: 15 Feb 2005
Posts: 4579
Location: San Jose, CA
|
| Posted: Thu Jun 02, 2005 8:41 pm Post subject: |
|
|
DFSORT doesn't have any built-in functions for doing that kind of find and replace.
<It does as of July, 2008 - see my post later on> |
|
| Back to top |
|
mohitsaini
Joined: 15 May 2006
Posts: 41
|
| Posted: Tue Jun 27, 2006 4:55 pm Post subject: Re: Replace the characters as the Office WORD can do by DFSO |
|
|
hello,
Actually I am looking for a replacement for '$' with space (1 Byte only). How do I do that ???
Actually I was referring to the ASCII table for hex equivalent but it was of not help ...
Any kind of help would be really appreciated.
- Mohit |
|
| Back to top |
|
sril.krishy
Joined: 30 Jul 2005
Posts: 162
Location: hyderabad
|
| Posted: Tue Jun 27, 2006 5:33 pm Post subject: Re: Replace the characters as the Office WORD can do by DFSO |
|
|
Hi,
Try this.
Code:
//S1 EXEC PGM=ICEMAN
//SYSOUT DD SYSOUT=*
//SORTIN DD *
AAA$BBCCDDDEEE
CCC$AABB
CED$CC
//SORTOUT DD SYSOUT=*
//SYSIN DD *
OPTION COPY
* SET UP ALTSEQ TABLE FOR TRAN=ALTSEQ.
* X'5B' = '$'. X'40' = blank.
ALTSEQ CODE=(5B40)
* USE TRAN=ALTSEQ TO CHANGE '$' (X'5B') TO ' ' (X'40').
OUTREC FIELDS=(1,80,TRAN=ALTSEQ)
your o/p will look like
Code:
AAA BBCCDDDEEE
CCC AABB
CED CC
Thank you
Krishy |
|
| Back to top |
|
mohitsaini
Joined: 15 May 2006
Posts: 41
|
| Posted: Tue Jun 27, 2006 7:48 pm Post subject: Re: Replace the characters with DFSORT? |
|
|
Hi Krishy,
It is working now.
Thanks a ton but tell me one thing .... what table are you are referring to figure out '$' as 5B ...
As I mentioned in my previous message that I referred the ASCII table but couldn't find what you got and what you got is working fine ... so plz do tell me what table you are referring to ???
Thanks once again.
Mohit |
|
| Back to top |
|
Frank Yaeger
Joined: 15 Feb 2005
Posts: 4579
Location: San Jose, CA
|
| Posted: Tue Jun 27, 2006 8:43 pm Post subject: |
|
|
Quote: As I mentioned in my previous message that I referred the ASCII table but couldn't find what you got and what you got is working fine ... so plz do tell me what table you are referring to ???
The ASCII and EBCDIC character sets are different. You need to look at the EBCDIC values for ALTSEQ. Here's a link to a table that shows the ASCII characters on the left and the EBCDIC characters on the right:
http://www.ncsa.uiuc.edu/UserInfo/Resources/Hardware/IBMp690/IBM/usr/share/man/info/en_US/xlf/html/lr425.HTM
If you go down the page on the right side, you'll see that blank is X'40' in EBCDIC and '$' is X'5B' in EBCDIC. So the ALTSEQ statement you need to change every '$' to a blank is:
Code:
ALTSEQ CODE=(5B40)
|
|
| Back to top |
|
sril.krishy
Joined: 30 Jul 2005
Posts: 162
Location: hyderabad
|
| Posted: Tue Jun 27, 2006 11:38 pm Post subject: Re: Replace the characters with DFSORT? |
|
|
Hi,
The simple thing that I do generally is,open any member in EDIT mode and type the letter which you want to convert.
Then use the HEX on function and see it's hex value and use that one in
ALTSEQ CODE.
When you type $0 and use the HEX on ,you can see the values like this.
54
b0
Thank you
Krishy |
|
| Back to top |
|
Frank Yaeger
Joined: 15 Feb 2005
Posts: 4579
Location: San Jose, CA
|
| Posted: Wed Jun 28, 2006 1:13 am Post subject: |
|
|
Krishy,
Good suggestion. I often do that too. |
|
| Back to top |
|
vinoth_316
Joined: 20 Jun 2006
Posts: 4
|
| Posted: Wed Jun 28, 2006 6:54 pm Post subject: |
|
|
Hi all
I am new to Mainframes, I have a doubt similar to the question in this thread. I need to find out the low and high values in a file and replace them by space. Any help??? |
|
| Back to top |
|
mohitsaini
Joined: 15 May 2006
Posts: 41
|
| Posted: Wed Jun 28, 2006 8:25 pm Post subject: Re: Replace the characters with DFSORT? |
|
|
What if I want to replace two chars at a time
For example if I want to replace '$' with '0' (zero) and ' '(space) with '0'.
so the input file
abc$a888 9999
would look like:
abc0a88809999
How can we do this in just one step.
Rgds,
Mohit |
|
| Back to top |
|
| |