String s = "aasfasfdtgsrast";
1: int a = s.length() //返回字符串的长度
2: char s1 = charAt(int intdex); //返回指定索引位置的字符串
3: int b = intdexOf(String ch); //返回指定字符串在此字符串首次出现的位置
4: int c = s.intdexOf(char ch,int FromIndex);//返回指定的字符在该字符串(s)中 从指定位置( FromIndex)后 第一次出现的位置
5: int d = s.intdexOf(String str,int FromIndex);//返回指定的字符串在该字符串(s)中 从指定位置( FromIndex)后 第一次出现的位置
6: lastIndexOf 则相反。
7: String s1 = s.subString(int start); //返回从指定开始位置开始截取的字符串 默认截取到结尾
8: String s3 = s.subString(int start,int end); //返回从指定开始位置到指定结尾开始截取的字符串
注意:左闭右开原则 如:[0,4) 就是 包左不包右