For example, the column has an account number of:
12345
And the email message says:
The cost of goods will be $12345.
I want to setup a condition that will "see" the dollar sign at the beginning of the match and exclude that match.
Can I do it?
The string in a message:
The cost of goods will be $12345.
will be stripped to individual tokens:
The
cost
of
goods
will
be
12345
Our Detection Engine is seeing the tokens after they have been stripped, so we would only be matching against 12345, not $12345. Therefore, it is not possible to create an exception for a dollar amount.