Find words which contains more than 3 e vowels: Difference between revisions

m
→‎{{header|REXX}}: changed whitespace.
m (→‎{{header|REXX}}: changed wording in the REXX section header.)
m (→‎{{header|REXX}}: changed whitespace.)
Line 27:
vowels= 'aeiou' /*obtain the list of all the vowels. */
upper vowels /*uppercase all the other vowels. */
vowels= space( translate( vowels, , chrU), 0) /*elide the one vowel we're looking for*/
 
do j=1 for #; $= @.j /*process all the words that were found*/