Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
reg again solution in Clear category for Count Digits by akaka
function countDigits(text: string): number {
return text.replace(/\D/g, '').length;
}
May 10, 2020