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: Read a string and return true if "good" appears starting at index 0 or 1 in the given string

Java String: Exercise-62 with Solution

Write a Java program to read a string and return true if "good" appears starting at index 0 or 1 in the given string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public boolean hasGood(String str) 
{
  if(str.length() < 4)
    return false;
  else if ((str.substring(0,4)).equals("good"))
    return true;
  else if (str.length() > 4)
  {
    if ((str.substring(1,5)).equals("good"))
      return true;
  }
    return false;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "goodboy";
	  
      System.out.println("The given strings is: "+str1);
      System.out.println("The 'good' appear in the string is: "+m.hasGood(str1));
	  }
}

Sample Output:

The given strings is: goodboy
The 'good' appear in the string is: true

Pictorial Presentation:

Java String Exercises: Read a string and return true if "good" appears starting at index 0 or 1 in the given string

Flowchart:

Flowchart: Java String Exercises - Read a string and return true if "good" appears starting at index 0 or 1 in the given string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to create a new string taking specified number of characters from first and last position of a given string.
Next: Write a Java program to check whether the first two characters present at the end 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