For example, FIND r'l[ai]ne' word, will find the words lane and line
00273 00875 01140 01157
00277 00924 01141 01158
00278 00930 01142 01160
00280 00933 01143 01165
00284 00935 01144 01364
00285 00937 01145 01371
00290 00939 01146 01388
00297 01025 01147 01390
00424 01026 01148 01399
00425 01027 01149 04971
00500 01047 01153 05123
00838 01112 01154 08482
00870 01122 01155 12712
Symbol |
Description |
. (period) |
The period symbol matches any one character except the
terminal newline character. For example, the regular expression d.g matches “dig”, “dug”,
and “dog”, but not “dg”, though it matches “dgg”. |
* (asterisk) |
The asterisk symbol matches zero or more instances of
the previous character. For example, the regular expression he*ath matches “hath” and “heath” and
(if it exists) “heeath”. |
? (question mark) |
The question mark symbol matches zero or one instance
of the previous character. For example, the regular expression behaviou?r matches “behaviour” and “behavior”. |
+ (plus) |
The plus symbol matches one or more instances of the
previous character. For example, the regular expression south+ern matches “southern” and “southhern”, but not “soutern”. (If you also wanted a match for “soutern”, use south*ern as the regular expression.) |
| (vertical bar) |
The vertical bar symbol acts as an OR operator and
matches the values to the left and right of the vertical bar. For example, the regular expression Jack|Jill matches “Jack” and “Jill”. |
\ (backslash) |
The backslash symbol acts as an escape sequence. Use it
when you want search for a regular expression symbol. The backslash character
immediately precedes the symbol in the expression. For example, the regular expression a.\+.b matches the string “a + b”. |
[string] |
A string within square brackets matches any one of the
characters in string. For example, the regular expression d[iu]g matches “dig” and “dug”, but not “dog”. |
[character-character] |
The hyphen symbol, within square brackets, means through.
It fills in the intervening characters according to the current collating
sequence. For example, [a-z] can be equivalent to [abc...xyz] or, with a
different collating sequence, it can be equivalent to [aAbBcC...xXyYzZ]. For example, the regular expression m[a-z]p matches “map” and “mop”, but not “m9p”, since 9 is not in the range a to z. |
[^string] |
The caret symbol, when the first character inside
square brackets, negates the following characters within the square brackets. For example, the regular expression d[^iu]g matches “dog”, but not “dig” or “dug”. |
{m} {m,u} {m,} |
Integer values enclosed in {} indicate the number of
times to apply the preceding regular expression. m is the
minimum number, and u is the maximum number. {m}
indicates an exact number of times to apply the regular expression. {m,u}
indicates a range of instances. {m,} indicates that there is a
minimum, but no maximum. For example: ·
m[eaiy]{2}n matches “main”, “mien” and “mean”,
but it does not match “man”, because there is only one instance of the
letters in the square brackets. Nor does it match “mayan”, because this
has three instances of the letters in the square brackets. ·
[0-9][a-z]{2,3}[0-9] matches “7ab5” and “4abc3”,
but not “7b5”, nor “4abcd3”. · [0-9][a-z]{2,}[0-9] matches “4ab3”, “4abc3”, “4abcd3”, and so on, but not “4a3”. |
(expression) |
Used to group parts of the expression into
sub-expressions. This can be used to limit an operator to a sub-expression. For example, the regular expression z/OS.((1\.1[0-3])|(2\.[1-2])) matches “z/OS® 1.13” and “z/OS 2.1”. |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.