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

 

innerDevowelize


Given a string, remove all vowels inside specially marked sections. The beginning and end of these sections will be marked with '<' and '>' respectively, which has no other use beyond these special marking purposes. Marked sections does not nest, does not overlap.


innerDevowelize("<Does> this <really> work?") → "<Ds> this <rlly> work?"
innerDevowelize("Yeah<it works>just fine") → "Yeah<t wrks>just fine"
innerDevowelize("aeiou") → "aeiou"

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

String innerDevowelize(String s) { }

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: 500

Copyright Nick Parlante 2017 - privacy