Write a Java program to check whether a given string ends with the contents of another string.
Java Programming Language / String in java
3864Program:
public class Exercise { public static void main(String[] args) { String str1 = "Python Exercises"; String str2 = "Python Exercise"; // The String to check the above two Strings to see // if they end with this value (se). String end_str = "se"; // Check first two Strings end with end_str boolean ends1 = str1.endsWith(end_str); boolean ends2 = str2.endsWith(end_str); // Display the results of the endsWith calls. System.out.println("\"" + str1 + "\" ends with " + "\"" + end_str + "\"? " + ends1); System.out.println("\"" + str2 + "\" ends with " + "\"" + end_str + "\"? " + ends2); } }
Output:
"Python Exercises" ends with "se"? false "Python Exercise" ends with "se"? true Press any key to continue . . .
Explanation:
None
This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS