How to find all words which contain a specific letter in it?
For example, if my string is
This is a Station called South Yarra
then I
Try with below regular expression
Regex regex = new Regex(@"[^\s]*[a][^\s]*");