I need a regular expression in python which matches exactly 3 capital letters followed by a small letter followed by exactly 3 capital letters.
For example, it should match ASDfGHJ and not ASDFgHJK.
I need a regular expression in python which matches exactly 3 capital letters followed
Share
This will match what you posted if it is a complete word.
This will match what you posted so long as it’s not preceded or followed by another capital letter.