Page 3 of 3

Re: ISPF Tips.

Posted: Fri Oct 30, 2015 11:36 am
by zprogrammer
34.

Code: Select all

F ALL P'#'
To Find all Numeric characters

Re: ISPF Tips.

Posted: Fri Oct 30, 2015 11:37 am
by zprogrammer
35.

Code: Select all

F ALL P'$'
To Find all special charecters

Re: ISPF Tips.

Posted: Fri Oct 30, 2015 11:38 am
by zprogrammer
36.

Code: Select all

F ALL P'<'
To Find all Lower case characters

Re: ISPF Tips.

Posted: Fri Oct 30, 2015 11:42 am
by zprogrammer
37.

Code: Select all

F ALL P'>'
To Find all Upper case characters

Re: ISPF Tips.

Posted: Fri Oct 30, 2015 5:12 pm
by nicc
Or simply read the help for Find/Change and learn a lot of things.

Re: ISPF Tips.

Posted: Mon Jul 25, 2016 4:33 pm
by Anuj Dhawan
38. Assign a function-key to the ‘FIND FIRST 8’, assuming it's PF10. Now in order to find paragraph OPEN-FILE-PARA, enter ‘OPEN’ on the command line and press PF10. The editor will position you at the beginning of the paragraph. The best thing about using it this way is that it immediately brings you to the desired paragraph, regardless of your current position within the program.

PS.: Assuming that "OPEN-FILE-PARA" is uniquely defined paragraph name and there is no other paragraph in the program that begins with the "OPEN".