View previous topic :: View next topic
|
Author |
Message |
rameshbabu Warnings : 1 New User
Joined: 23 May 2005 Posts: 27
|
|
|
|
hi plse rectify my doubt
i want to search a string between 1 to 30 column instead of 1 to 72 by 3.14
option is there any way to find out either 3.14 nor thru jcl |
|
Back to top |
|
|
kvivek
New User
Joined: 09 May 2005 Posts: 51 Location: Singapore
|
|
|
|
F <Search String> 1 30
Regards,
Vivek |
|
Back to top |
|
|
MGIndaco
Active User
Joined: 10 Mar 2005 Posts: 432 Location: Milan, Italy
|
|
|
|
Thru TSO you can use from command line
Thru Search-For Utility you can use the background form and
befor the SRCHFOR you must specify the segments of search as you can see below:
Code: |
//SEARCH EXEC PGM=ISRSUPC,
// PARM=(SRCHCMP,
// 'ANYC')
//NEWDD DD DISP=SHR,DSN=HLDPTE.PROCLIB(FTPTCP)
//OUTDD DD SYSOUT=(A)
//SYSIN DD *
CMPCOLM 1:30,35:80
LSTCOLM 1:80
SRCHFOR 'string' |
Try to see this link for further details:
Code: |
http://www.mainserver.state.mn.us/bookmgr-cgi/bookmgr.exe/handheld/BOOKS/IBMBK.Z4CMDS.ISPZU210.BOOK/CCONTENTS?SHELF=IBMBK.Z4CMDS.EZ2CMZ34.BKSHELF&DN=SC34-4823-01&DT=20010620123826 |
|
|
Back to top |
|
|
MGIndaco
Active User
Joined: 10 Mar 2005 Posts: 432 Location: Milan, Italy
|
|
Back to top |
|
|
phil rook
New User
Joined: 25 Nov 2005 Posts: 12 Location: amsterdam
|
|
|
|
sort 1 30 a = ascending
sort 1 30 d = descending |
|
Back to top |
|
|
|