I\'m quite new to regular expressions. Could you help me to create a pattern, which matches whole words, containing specific part? For example, if I have a text string \"Per
This matches 'Perform':
\b(\w*form\w*)\b
This matches 'expression':
\b(\w*express\w*)\b