A स्ट्रिंग एक ऐसी वस्तु है जो अक्षरों के अपरिवर्तनीय अनुक्रम का प्रतिनिधित्व करती है और एक बार बनाने के बाद बदला नहीं जा सकता। java.lang.String क्लास का उपयोग स्ट्रिंग ऑब्जेक्ट बनाने के लिए किया जा सकता है।
हम उपयोग कर सकते हैं endsWith() स्ट्रिंग . की विधि यह जाँचने के लिए कि कोई स्ट्रिंग किसी विशिष्ट स्ट्रिंग के साथ समाप्त होती है या नहीं, यह एक बूलियन मान देता है सत्य या झूठा ।
सिंटैक्स
public boolean endsWith(String prefix)
उदाहरण
public class StringEndsWithSubStringTest { public static void main(String[] args) { String str = "WelcomeToTutorialsPoint"; if(str.endsWith("Point")) { System.out.println("Ends with the specified word!"); } else { System.out.println("Does not end with the specified word!"); } } }
आउटपुट
Ends with the specified word!