Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Return a substring after removing the all instances of remove string as given from the given main string

Java String: Exercise-92 with Solution

Write a Java program to return a substring after removing the all instances of remove string as given from the given main string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String removeString(String m_string, String r_string) 
{
  int m_st_len = m_string.length();
  int r_st_len = r_string.length();
  String m_lower  = m_string.toLowerCase();
  String r_lower  = r_string.toLowerCase();
  String f_string = "";
  for (int i = 0; i < m_st_len; i++) 
  {
    if (i <= m_st_len - r_st_len) 
	{
      String tmp = m_lower.substring(i,i+r_st_len);
      if (!tmp.equals(r_lower))
        f_string += m_string.substring(i,i+1);
      else 
	  {
        i += r_st_len-1;
      }
    }
    else 
	{
      String tmp2 = m_lower.substring(i,i+1);
      if (!tmp2.equals(r_lower))
        f_string += m_string.substring(i,i+1);
    }
  }
  return f_string;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "This is the test string";
	  String str2= "st";
      System.out.println("The main string is: "+str1);
      System.out.println("The removable string is: "+str2);
      System.out.println("The new string is: "+m.removeString(str1,str2));
	  }
}

Sample Output:

The main string is: This is the test string
The removable string is: st
The new string is: This is the te ring

Pictorial Presentation:

Java String Exercises: Return a substring after removing the all instances of remove string as given from the given main string.

Flowchart:

Flowchart: Java String Exercises - Return a substring after removing the all instances of remove string as given from the given main string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to count the number of words ending in 'm' or 'n' (not case sensitive) in a given text.
Next: Write a Java program to find the longest substring appears at both ends of a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe