Advertisements
Advertisements
प्रश्न
Describe the purpose of the following function with its syntax:
startWith()
कोड लेखन
उत्तर
This function returns a boolean value. It is case-sensitive. It returns true when a provided string is used as a prefix to another string and false otherwise.
Example1:
String s1 = "Monopoly";
String s2 = "Mono";
System.out.println(s1.starts With(s2));
Output: true
Example2:
String s1 = "Monopoly";
String s2 = "mono";
System.out.println(s1.startsWith(s2));
Output: false
(since it is case-sensitive)
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 4: String Handling - EXERCISES [पृष्ठ २८९]