String的subString()方法
作者:互联网
下标从0开始
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 结尾处索引(不包括)。 前闭后开 抛出:如果 beginIndex 为负,或length大于字符串长度,则抛出IndexOutOfBoundsException 例:"hamburger".substring(3,8) returns "burge" "smiles".substring(0,5) returns "smile" 摘自:https://www.cnblogs.com/super-rui/p/9843679.html标签:substring,beginIndex,String,int,subString,索引,returns,方法 来源: https://www.cnblogs.com/weihl/p/13206324.html