selang supports the following wildcard characters:
Any sequence of zero or more characters.
Any single character (except a path separator for files).
To make a single character a “do not care” character that matches any other single character, use a question mark (?), as in the following examples:
|
Specify this... |
To do this... |
|---|---|
|
mmc? |
mmc3, mmcx, mmc5 |
|
mmc?.t |
mmc1.t, mmc2.t |
|
mmc04.? |
mmc04.a, mmc04.1 |
To match any string of zero or more characters, use an asterisk (*), as in the following examples:
|
Specify this... |
To do this... |
|---|---|
|
*i*.c |
main.c, list.c |
|
st*.h |
stdio.h, stdlib.h, string.h |
|
* |
All records of the specified class |
| Copyright © 2012 CA. All rights reserved. | Tell Technical Publications how we can improve this information |