Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 430 Bytes

File metadata and controls

14 lines (9 loc) · 430 Bytes

Abbreviate

Write a method that abbreviates a string by removing all (capital and lower case) vowels. For example, the string:

The quick brown fox jumped over the lazy dogs.

would be abbreviated to:

Th qck brwn fx jmpd vr th lzy dgs.

Your task is to fill in implementation in Abbreviate.java. We've provided a simple test main() for you; feel free to add additional lines to test your code further.