Using Wildcard Characters in FOOD-TRAK

A wildcard character is used to represent a character or a group of characters in a search expression. For example, the asterisk (*) typically represents one or more characters, and the question mark (?) typically represents a single character.

FOOD-TRAK supports a subset of regular expression search format.  A regular expression is a combination of literal and wildcard characters that you use to find patterns of text. The literal text characters indicate text that must exist in the target string of text. The wildcard characters indicate the text that can vary in the target string.

The following wildcard characters are supported in the FOOD-TRAK application.

Examples:

Rye*   returns:
”r;Rye Seasoning”

*Rye   returns:
”r;Bread, Rye”
”r;Crackers, Rye”

*Rye*   returns:
”r;Bread, Rye”
”r;Rye Seasoning”
”r;Crackers, Rye”
”r;Crackers, Rye and Flax”