How to perform a literal match with regex using wildcard
- by kashif4u
I am trying to perform literal match with regular expression using wildcard.
string utterance = "Show me customer id 19";
string pattern 1 = "*tom*";
string patter 2 = "*customer id [0-9]*";
Desired results:
if (Regex.IsMatch(utterance, pattern 1 ))
{
MATCH NOT FOUND
}
if (Regex.IsMatch(utterance, pattern 2 ))
{
MATCH FOUND
}
I have tried looking for literal match solution/syntax in wildcard but having difficulty.
Could you also enlighten me with with an example on possible Pattern Matching Strength algorithm i.e. if code match 90 select?
Note: I have table with 100000 records to perform literal matches from user utterances.
Thanks in advance.