SyntaxFix
Write A Post
Hire A Developer
Questions
Counting number of letters in a string using regex.
import re s = 'The grey old fox is an idiot' count = len(re.findall('[a-zA-Z]',s))