Find words which contains all the vowels: Difference between revisions

Add ed example
m (→‎{{header|Wren}}: Minor tidy)
(Add ed example)
 
Line 979:
stupefaction
sulfonamide</pre>
 
=={{header|Ed}}==
 
Independently evolved to the same implementation as [[#sed]]
 
<syntaxhighlight>
H
v/.{10,}/d
v/^[^a]*a[^a]*$/d
v/^[^e]*e[^e]*$/d
v/^[^i]*i[^i]*$/d
v/^[^o]*o[^o]*$/d
v/^[^u]*u[^u]*$/d
,p
Q
</syntaxhighlight>
 
{{out}}
 
<pre>$ cat all-vowels.ed | ed -E unixdict.txt
206403
ambidextrous
aureomycin
bimolecular
cauliflower
colatitude
communicable
communicate
consanguine
consultative
countervail
denudation
deputation
exclusionary
exhaustion
exhumation
exultation
fluoridate
gelatinous
grandiloquent
gregarious
importunate
incommutable
incomputable
insupportable
loudspeaking
malnourished
mendacious
mensuration
oneupmanship
pandemonium
permutation
persuasion
perturbation
portraiture
praseodymium
precarious
precaution
quasiorder
refutation
reputation
stupefaction
sulfonamide
tambourine</pre>
 
=={{header|F_Sharp|F#}}==
56

edits