Click here to Skip to main content
15,880,543 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Can any one please tell me how to find all words from a particular directory which contains a,e,i,o,u in order.

Ex abstancious. Here 'a' followed by 'a' followed by 'i' followed by 'o' followed by 'u'. Vowels never repeated.

I have cat /home/user1/tmp/* | grep [aeiou]

But it's not displaying my expected answer.

Please help.

Thanks in advance.
Posted

1 solution

Your regular expression is just looking for any single vowel. You want something more like "^[^aeiou]*a[^aeiou]*e[^aeiou]*i[^aeiou]*o[^aeiou]*u[^aeiou]*$" I think (assuming it must have all of them). This one searches for zero or more consonants, a, zero or more consonants, e, etc.
 
Share this answer
 
v2
Comments
srmohanr 21-Nov-12 5:12am    
Please refine the answer more. Because even I am getting the output 'unfacetiousness'. But this is not my scenario.

Please help
lewax00 21-Nov-12 10:06am    
I updated it to match only whole lines. You should take the time to learn regular expressions, they can be very useful.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900