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 string where every appearance of the lowercase word 'is' has been replaced with'is not'

Java String: Exercise-88 with Solution

Write a Java program to return a string where every appearance of the lowercase word 'is' has been replaced with 'is not'.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public String wordReplaceBy(String stng) 
{
  String newstring = "";
  int l = stng.length();
  for(int i = 0; i < l; i++)
  {
    if(i-1 >= 0 && Character.isLetter(stng.charAt(i-1))|| i+2 < l && Character.isLetter(stng.charAt(i+2))) 
	{
      newstring += stng.charAt(i);
    }
    else if(i+1 < l && stng.substring(i, i+2).equals("is")) 
	{
      newstring += "is not";
      i++;
    }
    else newstring += stng.charAt(i);
  }
  return newstring;
}

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

Sample Output:

The given string is: it is a string
The new string is: it is not a string

Pictorial Presentation:

Java String Exercises: Return a string where every appearance of the lowercase word 'is' has been replaced with'is not'

Flowchart:

Flowchart: Java String Exercises - Return a string where every appearance of the lowercase word 'is' has been replaced with'is not'

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to check whether a specified character is happy or not. A character is happy when the same character appears to its left or right in a string.
Next: Write a Java program to calculate the sum of the numbers appear 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