We're a place where coders share, stay up-to-date and grow their careers.
Python regex example
import re def num_vowels(s): return len(re.findall('[aeiou]', s))
Python regex example