Uporaba nadomestnih znakov pri vnosu kontov
Wildcard when Entering Accounts
Although only one field for entering the account number is available, we can monitor more accounts at once by using wildcard.
We can use special, alternative characters:
- XXXX% - The percentage sign means to include all accounts whose first four characters are the same, the length is not important.
- XXX_ - Sign underscore means that will include all accounts whose first three characters are the same, the fourth sign could be anything.
- XX[YZ]X - In the third place will be used only signs which appear in square brackets.
- XX[^YZ]X - In the third place will NOT be used signs which appear in square brackets.
- combination of the above accounts.
Examples:
120%
The review will cover all accounts, starting as 120, are of any length and contain any characters, examples are 1200, 12001, 1210, 120000.
120_
The review will include all accounts that begin with 120, the length of four characters and the last character is arbitrary, for example 1200, 1201 ... 1209.
12[01]0
The review will include only two accounts, 1200 and 1210.
12[^23456789]0
The review will include only two accounts, 1200 and 1210.
12[01][^123456789]%
The review will include accounts 1200 and 1210 and due to percentage sign also account 12000, 12100, etc.