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: New string after removing a specified character from a given string except the first and last position

Java String: Exercise-96 with Solution

Write a Java program to create a new string after removing a specified character from a given string except the first and last position.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String removeAllZ(String stng) 
{
  String fin_str = "";
  int l = stng.length();
  for (int i = 0; i < l; i++)
  {
    char temp = stng.charAt(i);
    if (!(i > 0 && i < l - 1 && temp == 'z'))
      fin_str = fin_str + temp;
  }
    return fin_str;     
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "zebrazone";
      System.out.println("The given string is: "+str1);
      System.out.println("The new string is: "+m.removeAllZ(str1));
	  }
}

Sample Output:

The given string is: zebrazone
The new string is: zebraone

Pictorial Presentation:

Java String Exercises: Return the string after removing all 'z' (except the very first and last) from a given string

Flowchart:

Flowchart: Java String Exercises - Return the string after removing all 'z' (except the very first and last) from a given string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to return the sum of the digits present in the given string.If there is no digits the sum return is 0.
Next: Write a Java program to return a string with the characters of the index position 0,1,2, 5,6,7, ... from 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