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
Depending on how you want to handle punctuation such as hyphenation, consider using just \w*a\w*.
\w*a\w*
FYI: \w matches a word character.
\w