I want to find all lines that contain at least two vowels.
I tried to use the sentence: .*[aeiou].{2,}\n
But it seems that it doesn't succeed, in this failed result it still contains even lines with only one vowel such as "abc123"enter image description here
What about something as simple as
.*[aeiou].*[aeiou]?Your
{2,}applies to the dot just before.