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: Create a new string from a given string after removing the 2nd character from the substring of length three starting with 'z' and ending with 'g' presents in the said string

Java String: Exercise-79 with Solution

Write a Java program to create a new string from a given string after removing the 2nd character from the substring of length three starting with 'z' and ending with 'g' presents in the said string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String kitKatPattern(String stng) 
{
  int len = stng.length();
  String newformstring = "";
  for (int i = 0; i < len; i++) 
  {
    newformstring += stng.substring(i,i+1);
    if (i > 0 && i < len-1) 
	{
      if (stng.charAt(i-1) == 'z' && stng.charAt(i+1) == 'g')
        newformstring = newformstring.substring(0,newformstring.length()-1);
    }
  }
  return newformstring;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "zzgkitandkatcaketoket";
      System.out.println("The given string is: "+str1);
      System.out.println("The new string is: "+m.kitKatPattern(str1));
	  }
}

Sample Output:

The given string is: zzgkitandkatcaketoket
The new string is: zgkitandkatcaketoket

Pictorial Presentation:

Java String Exercises: Return the given string after removing the 2nd character from the substring of length three, starting with 'z' and ending with 'g'

Flowchart:

Flowchart: Java String Exercises - Return the given string after removing the 2nd character from the substring of length three, starting with 'z' and ending with 'g'

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to repeat a specific number of characters for specific number of times from the last part of a given string.
Next: Write a Java program to check whether the character immediately before and after a specified character is same in 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