C++|java字符串String类用法详解( 二 )


String s13 = \"abdc  \";
System.out.println(s13.startsWith(\"ab\")+\"的结果为true 判断字符串是否以ab开头\");
System.out.println(s13.endsWith(\"dc\")+\"的结果为false 判断字符串是否以dc结束 dc后面还有两个空格所以false\");
System.out.println(s13.indexOf(\" \")+\"的结果为4 从前往后找 返回第一个空格的index下标\");
System.out.println(s13.lastIndexOf(\" \")+\"的结果为5 从后往前找 返回的index依然是从前往后数的下标\");