indexof
String indexof 包含四种方法,如下:
1. indexof(int ch)
查找特定字符第一次出现在字符串中的位置并返回int,位置从0开始。如果未找到则返回 -1.
ch 为字符串的ASCII码。
2. indexof(int ch,int fromIndex )
返回从fromIndex 的位置开始查,字符在字符串中出现的位置。
3. indexof (String str)
同 indexof(int ch) ,将ASCII码换为字符。
4. indexof (String str,int fromIndex )
同indexof(int ch,int fromIndex ) ,将ASCII码换为字符。
代码示例:
// 55 为 “7”的ASCII码,110为“N”的ASCII码,97为“a”的ASCII码。
String string = "1548awed7aseddd";
System.out.println(string.indexOf(55));//8
System.out.println(string.indexOf(110));//-1
System.out.println(string.indexOf("7"));//8
System.out.println(string.indexOf(97,5));//9
System.out.println(string.indexOf("a",5));//9
substring
按位置截取字符串,位置从0开始。
1. substring(int beginIndex)
从beginIndex开始截取
2. substring (int beginIndex ,int endIndex)
截取范围为 beginIndex~(endIndex-1)
如果位置超出字符串的范围,则返回空。
String str = "happy";
System.out.println(str.substring(1));//appy
System.out.println(str.substring(1,4));//app
System.out.println(str.substring(5));//"",空