Jump to content

Find words with alternating vowels and consonants: Difference between revisions

add sed
m (syntax highlighting fixup automation)
(add sed)
Line 2,980:
topologize
unilateral
unimodular
uninominal
verisimilitude
</pre>
 
=={{header|sed}}==
<syntaxhighlight lang="sed">#!/bin/sed -f
 
/^.\{10\}/!d
/^[aeiou]\{0,1\}\([^aeiou][aeiou]\)*[^aeiou]\{0,1\}$/!d</syntaxhighlight>
{{out}}
<pre>
aboriginal
apologetic
bimolecular
[...]
unimodular
uninominal
559

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.