Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First: RegEx solution solution in Speedy category for Count Digits by leggewie
import re
def count_digits(text: str) -> int:
return len(re.findall("\d", text))
May 23, 2021
Comments: