The Remove Vowels/Consonants equation removes either all vowels, consonants, numbers, or whitespace from a string of text.
INSTRUCTIONS: Enter the following
- (S) String - contains a word, phrase, or numbers
String with Removals (SR): The equation returns a string after all characters have been removed
Example
Remove Vowels:
- The 3 quick brown foxes jumped over 14 lazy dogs.
- Th qck brwn fx jmpd vr th lzy dg.
Remove Consonants:
- The 3 quick brown foxes jumped over 14 lazy dogs.
- e ui o o ue oe e a o.
Remove Numbers:
- The 3 quick brown foxes jumped over 14 lazy dogs.
- The quick brown foxes jumped over lazy dogs.
Remove Whitespace:
- The 3 quick brown foxes jumped over 14 lazy dogs.
- The3quickbrownfoxesjumpedover14lazydogs.
String Manipulation Equations: