In C#, I want to use a regular expression to match any of these words:
C#
string keywords = \"(shoes|shirt|pants)\";
I want to fi
put a word boundary on it using the \b metasequence.