vowelDipthongAndTriptongCount property

int vowelDipthongAndTriptongCount

Returns the number of single vowels, diphtongs and triptongs in the String.

Implementation

int get vowelDipthongAndTriptongCount =>
    RegExp(r'[aeiouyà-æè-ðò-öø-ÿ]+').allMatches(this).length;