Lab Goal : This lab was designed to teach you how to use a while loop. Lab Description (JAVA PROGRAMMING): Remove all occurrences of the removal string from the original string. Each time you take out the removal string you must also remove the letter that preceded the removal string. After you remove a string and its leading character, you must check to see if any more occurrences of the removal string exist. Sample Data : xR-MxR-MHelloxR-M R-M sxsssxssxsxssexssxsesss xs fuxqwexqwertyxqwexqwe Sample Output : xR-MxR-MHelloxR-M - String to remove R-M Hello sxsssxssxsxssexssxsesss - String to remove xs sesss fuxqwexqwertyxqwexqwertyrtyxqwertyrtyn - String to remove qwerty fun dogdogcatddodogdogdoggog - String to remove dog catgog algorithm help use indexOf to look for more removals while you have more removals { take out the current removal using substring use indexOf to look for more removals } I need help with assignment: "String Cleaner" StringRemover.js: //(c) A+ Computer Science //www.apluscompsci.com //Name - class StringRemover { private String remove; private String sentence; public StringRemover( String sen, String rem ) { } public void removeStrings() { } public String toString() { return ""; } } StringRemoverRunner.js: //(c) A+ Computer Science //www.apluscompsci.com //Name - public class StringRemoverRunner { public static void main( String args[] ) { //add test cases } }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question

Lab Goal : This lab was designed to teach you how to use a while loop.

 

Lab Description (JAVA PROGRAMMING): Remove all occurrences of the removal string from the original string. Each time you take out the removal string you must also remove the letter that preceded the removal string. After you remove a string and its leading character, you must check to see if any more occurrences of the removal string exist.

Sample Data :

xR-MxR-MHelloxR-M R-M

sxsssxssxsxssexssxsesss xs

fuxqwexqwertyxqwexqwe

 

 

Sample Output : xR-MxR-MHelloxR-M - String to remove R-M Hello sxsssxssxsxssexssxsesss - String to remove xs sesss fuxqwexqwertyxqwexqwertyrtyxqwertyrtyn - String to remove qwerty fun dogdogcatddodogdogdoggog - String to remove dog catgog

 

algorithm help

use indexOf to look for more removals

while you have more removals

{

take out the current removal using substring

use indexOf to look for more removals

}

 

 

 

 

 

I need help with assignment: "String Cleaner"

 

StringRemover.js:

//(c) A+ Computer Science
//www.apluscompsci.com
//Name -

class StringRemover
{
  private String remove;
  private String sentence;

public StringRemover( String sen, String rem )
{
}

public void removeStrings()
{
}

public String toString()
{
 return "";
}
}

 

 

 

StringRemoverRunner.js:

//(c) A+ Computer Science
//www.apluscompsci.com
//Name -
public class StringRemoverRunner
{
public static void main( String args[] )
{
//add test cases
}
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Types of Loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT