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 it ends with a specified string of length 2

Java String: Exercise-58 with Solution

Write a Java program to read a string and return true if it ends with a specified string of length 2.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public boolean endsNg(String str) 
{
  int len = str.length();
  String ng = "ng";
  if (len < 2)
    return false;
  else if (ng.equals(str.substring(len-2,len)))
    return true;
  else
    return false;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "string";
      System.out.println("The given strings is: "+str1);
      System.out.println("The string containing ng at last: "+m.endsNg(str1));
    }
}

Sample Output:

The given strings is: string
The string containing ng at last: true

The given strings is: strign
The string containing ng at last: false

Pictorial Presentation:

Java String Exercises: Read a string and return true if it ends with a specified string of length 2.

Flowchart:

Flowchart: Java String Exercises - Read a string and return true if it ends with a specified string of length 2.

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to create a new string from a given string swapping the last two characters of the given string. The length of the given string must be two or more.
Next: Write a Java program to read a string, if the string begins with "red" or "black" return that color string, otherwise return the empty 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