This regex pattern uses word boundaries to ensure that the words start with 'a' and end with 'o'. It allows for variations in uppercase and lowercase letters in between 'a' and 'o'.
Interactive Regex Playground
\b(?:a[a-zA-Z]*o)\b
This regex pattern uses word boundaries to ensure that the words start with 'a' and end with 'o'. It allows for variations in uppercase and lowercase letters in between 'a' and 'o'.
Matches
Found 0 matches