Wild card characters can be used in find fields as follows:
? character represents an arbitrary character
* character represents an arbitrary string
Examples of the use of wild cards are as follows:
Specifying a range: 200? selects the numbers from 2000 to 2009;
20?? selects the numbers from 2000 to 2099
Specifying all numbers: 2* selects all phone numbers which start with the number 2;
*2 selects all phone numbers which end with the number 2