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

 

String-3 > withoutString
prev  |  next  |  chance

Given two strings, base and remove, return a version of the base string where all instances of the remove string have been removed (not case sensitive). You may assume that the remove string is length 1 or more. Remove only non-overlapping instances, so with "xxx" removing "xx" leaves "x".


withoutString("Hello there", "llo") → "He there"
withoutString("Hello there", "e") → "Hllo thr"
withoutString("Hello there", "x") → "Hello there"

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

public String withoutString(String base, String remove) { }

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

Copyright Nick Parlante 2017 - privacy