Use a picture string to describe the type of string to be found instead of specifying the exact characters to be found.
A picture string is:
Each of these characters represents a class of characters:
Any character
Alphabetic characters
Numeric characters
Special characters
Non-blank characters
Invalid display characters
Non-numeric characters
Lowercase alphabetic characters
Uppercase alphabetic characters
Examples
This command finds invalid characters in columns 73 to 80:
Command ===> find p'.' 73 80
This command finds a 3-digit number (for example, 120 but not 85):
Command ===> find p'###'
This command finds the label A1, B1, C1, and so on in column 1:
Command ===> find '@1'p 1
This command finds the next lowercase alphabetic:
Command ===> find p'<'
|
Copyright © 2015 CA Technologies.
All rights reserved.
|
|