What is the use of startsWith and endsWith method in String java example
// What is the use of startsWith and endsWith method in String java example
public class Test {
public static void main(String[] args) {
String st = new String("test string test here");
System.out.println(st.startsWith("test"));
System.out.println(st.startsWith("test", 12));
System.out.println(st.endsWith("here"));
}
}
public class Test {
public static void main(String[] args) {
String st = new String("test string test here");
System.out.println(st.startsWith("test"));
System.out.println(st.startsWith("test", 12));
System.out.println(st.endsWith("here"));
}
}
well done guys , keep it up.
ReplyDelete