about | help | code help+videos | done | prefs |
removeFromString
Write a function that accepts a string s, and a string to be removed from s called part. Return a string with all instances of that part removed. (Hint: do not call removeCharFromString() ) removeFromString('aababa', 'aba') → 'aba' removeFromString('Bloop pow woot', 'oo') → 'Blp pow wt' removeFromString('Bloop woot pow woot', ' woot') → 'Bloop pow' ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy