[Solved] what is regex for string consist of all lowercase vowels in order of a-e-i-o-u where all vowels can occur one or more times? [closed]


If you’re using Java:

String pattern = "a+e+i+o+u+";
boolean match = myStr.matches(pattern);

2

solved what is regex for string consist of all lowercase vowels in order of a-e-i-o-u where all vowels can occur one or more times? [closed]