I'm wondering if there is any way to subtract Strings that are contained within another String in Java based on the selection of a user.
This is the code that I have:
removeIng = pH1 + pH2 + pH3;
System.out.print("Enter number corresponding to element you want to remove");
System.out.printf("%s",removeIng);
remove = in.nextInt();
switch(remove)
{
case 1:
removeIng = pH2 + pH3;
case 2:
removeIng = pH1 + pH3;
case 3:
removeIng = pH1 + pH2;
}
I need the code to be dynamic so that the user could possibly remove all the elements if they want. I have an outside loop already created to allow for that possibility. But I'm at a loss as to how to have "removeIng" subtract the user selected element. I can figure out the other part. Any help would be greatly appreciated. I've found ways to subtract strings that are declared as "blah blah" but nothing like this. Hopefully that makes sense.
Thanks.