118k views
4 votes
I need help to make this code to make it remove all instances of the specified letter from the original sentence

I need help to make this code to make it remove all instances of the specified letter-example-1
User Kaezarrex
by
7.3k points

1 Answer

2 votes
Here is my solution. I did the following:

- changed the setRemover into a constructor, since the comment seems to hint that that is expected.
- changed the lookFor type into a String, so that it can work with the string replace overload. That's convenient if you want to replace with an emtpy string. The char type won't let you do that, you can then only replace one char with another.
- Added a static Main routine to use the class.

import java.lang.System.*;

public class LetterRemover
{
private String sentence;
private String lookFor;

public LetterRemover() {}

// Constructor

public LetterRemover(String s, char rem)
{
sentence = s;
lookFor = String.valueOf(rem);
}

public String removeLetters()
{
String cleaned = sentence.replace(lookFor, "");
return cleaned;
}

public String toString()
{
return sentence + " - letter to remove " + lookFor;
}

public static void main(String[] args)
{
LetterRemover lr = new LetterRemover("This is the tester line.", 'e');
System.out.println(lr.toString());
String result = lr.removeLetters();
System.out.println("Resulting string: "+result);
}
}

User Jeron
by
8.4k points