日常使用查询
作者:互联网
1.
String.indexOf(String str)
String str1="012345"; String str2="23"; System.out.println( str1.indexOf(str2) );
输出结果:2。
2.布尔型变量定义的默认值为true
3.String 中的substring 方法
截取字符串,在java语言中的用法
1、 public String substring(int beginIndex)
返回一个新字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。
参数:beginIndex - 开始处的索引(包括),
返回:指定的子字符串,
异常:如果 beginIndex 为负或大于此 String 对象的长度,则抛出IndexOutOfBoundsException
例 :"unhappy".substring(2) returns"happy"
"mybaby".substring(3) returns"aby"
2、public String substring(int beginIndex, int endIndex)
返回一个新字符串,它是此字符串的一个子字符串。该子字符串从指定的 beginIndex 处开始, endIndex:到指定的 endIndex-1处结束。
参数:beginIndex - 开始处的索引(包括)
endindex 结尾处索引(不包括)。 返回:指定的子字符串。 抛出:如果 beginIndex 为负,或length大于字符串长度,则抛出IndexOutOfBoundsException 例:"hamburger".substring(3,8) returns "burge" "smiles".substring(0,5) returns "smile"标签:beginIndex,String,查询,substring,索引,returns,日常,使用,字符串 来源: https://www.cnblogs.com/sshuaji/p/11830541.html