Advertisements
Advertisements
प्रश्न
How does endsWith() and startsWith() differ? Explain with an example.
कोड लेखन
उत्तर
starts With() returns true if a provided string is used as a prefix for another string, and false otherwise.
Example1:
Strings 1 = "Monopoly";
String s2 = "Mono";
System.out.println(s1.starts With(s2));
Output: true
endsWith(): It returns true if a given string is used as a suffix to another string, false otherwise.
Example2:
String s1 = "Monopoly";
String s2 = "poly";
System.out.println(s1.endsWith(s2));
Output: true
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 4: String Handling - EXERCISES [पृष्ठ २८९]