id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

crehwinkel@frhsd.com > removeVowels
prev  |  next  |  chance

Write a method called removeVowels, which takes a string parameter and returns a string with all vowels (a, e, i, o, u) removed from it. You can assume the string will have at least one letter and that all characters will be lowercase.


removeVowels("hello") → "hll"
removeVowels("computer") → "cmptr"
removeVowels("goodbye") → "gdby"

...Save, Compile, Run (ctrl-enter)

public String removeVowels(String str){ }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 200

Copyright Nick Parlante 2017 - privacy