You can prevent some data from being uploaded by using the Do Not Upload List. This can be useful if you:
...
Expression | Will Exclude |
---|---|
.* | All accounts. |
ABC.* | All accounts that start with ABC |
(?!^ABC).* | All accounts that do not start with ABC |
(?!^ABC)(?!^XYZ).* | All accounts that do not start with ABC or XYZ |
^[0-9]+$ | All numeric accounts |
^.*CAD$ | All accounts ending in CAD |
ABC[0-9][0-9][0-9] | All acounts starting with ABC followed by three digits |
(?!ABC12345)ABC.* | All accounts starting with ABC, except for ABC12345 |
The patterns used are Perl Compatible Regular Expressions. Their syntax is described in detail here.
...