एक स्ट्रिंग कक्षा का उपयोग वर्ण स्ट्रिंग का प्रतिनिधित्व करने के लिए किया जा सकता है, जावा प्रोग्राम में सभी स्ट्रिंग अक्षर स्ट्रिंग क्लास के उदाहरण के रूप में कार्यान्वित किए जाते हैं। स्ट्रिंग्स स्थिरांक हैं और उनके मान बदले नहीं जा सकते (अपरिवर्तनीय ) एक बार बनाया गया।
हम startsWith() . का उपयोग कर सकते हैं स्ट्रिंग . की विधि यह जाँचने के लिए कि कोई स्ट्रिंग किसी विशिष्ट स्ट्रिंग से शुरू होती है या नहीं, यह एक बूलियन लौटाती है, सही या गलत।
सिंटैक्स
public boolean startsWith(String prefix)
उदाहरण
public class StringStartsWithSubStringTest { public static void main(String[] args) { String str = "WelcomeToTutorialsPoint"; if(str.startsWith("Welcome")) { System.out.println("Begins with the specified word!"); } else { System.out.println("Does not begin with the specified word!"); } } }
आउटपुट
Begins with the specified word!