string的substring方法(SUBSTRING的用法是什么)
本文目录
SUBSTRING的用法是什么
方法如下:public String substring(int beginIndex, int endIndex)第一个int为开始的索引,对应String数字中的开始位置,第二个是截止的索引位置,对应String中的结束位置1、取得的字符串长度为:endIndex - beginIndex;2、从beginIndex开始取,到endIndex结束,从0开始数,其中不包括endIndex位置的字符如:“hamburger“.substring(4, 8) returns “urge“ “smiles“.substring(1, 5) returns “mile“取长度大于等于3的字符串a的后三个子字符串,只需a.subString(a.length()-3, a.length());
java string.substring方法有几个参数
subString有2种情况,
第一种情况,1个参数, 表示从索引位置开始,到结束
第二种情况,2个参数,表示从第一个索引位置到第二个索引位置为止, 包含第一个索引位置,不包含第二个索引位置
参考代码
public class Test{ public static void main(String args) { String str=“abcdefg“; String s1 =str.substring(0, 1);//索引为[0~1)的区间的字符 包含0, 不包含1 String s2 = str.substring(1);//从索引1的字符串开始,到结束 System.out.println(s1+“\t“+s2); }}关于java String类的substring()和equals()方法
1、public class HelloWorld { public static void main(String args) { System.out.println(“Helloworld“); test(); } public static void test() { String s = “10“; String s2 = “1“; System.out.println(s.substring(0, 1)==“1“); System.out.println(s.equals(“1“)); System.out.println(s2.substring(0,1)==“1“); System.out.println(s2.equals(“1“)); }}结果不一样:
1、false “1“在字符串常量区
使用substring...
是重新在堆里创建了一个String对象,见下面源码(return语句):
public String substring(int beginIndex, int endIndex) { if (beginIndex 《 0) { throw new StringIndexOutOfBoundsException(beginIndex); } if (endIndex 》 value.length) { throw new StringIndexOutOfBoundsException(endIndex); } int subLen = endIndex - beginIndex; if (subLen 《 0) { throw new StringIndexOutOfBoundsException(subLen); } return ((beginIndex == 0) && (endIndex == value.length)) ? this : new String(value, beginIndex, subLen);}“==“比较的是引用变量的内容.
2、“10“跟“1“ 使用equals比较..这个方法比较的先是引用,再是比较的内容,可以参考String类的equals方法。 “10“和“1“在字符串常量区肯定不同,比较内容更是不同.
3、看到源码这句了吗:((beginIndex == 0) && (endIndex == value.length)) ? this 就是说截取的长度从0开始,末索引是当前字符串长度的时侯,返回它自身. 然后按照上面胡1方式比较。
4、按照2方式比较。
如果还不懂。。请说明。
string中截取指定字符串
java用substring函数截取string中一段字符串
在String中有两个substring()函数,如下:
一:String.substring(int start)
参数:
start:要截取位置的索引
返回:
从start开始到结束的字符串
例如:String str = “hello word!“; System.out.println(str.substring(1));
System.out.println(str.substring(3));
System.out.println(str.substring(6));
将得到结果为:
ello word!
lo word!
ord!
如果start大于字符串的长度将会抛出越界异常;
二:String.substring(int beginIndex, int endIndex)
参数:
beginIndex 开始位置索引
endIndex 结束位置索引
返回:
从beginIndex位置到endIndex位置内的字符串
例如:String str = “hello word!“;
System.out.println(str.substring(1,4));
System.out.println(str.substring(3,5));
System.out.println(str.substring(0,4));
将得到结果为:
ell
lo
hell
如果startIndex和endIndex其中有越界的将会抛出越界异常。
更多文章:

手机上怎么下载flash插件(安卓手机怎么安装Adobe Flash Player插件)
2025年3月10日 20:40

generate的用法(各位大神,求助一下,关于generate的用法)
2025年2月27日 23:50

android recyclerview(android recyclerview到底提示)
2025年2月10日 13:00

什么是类 什么是对象 类和对象的区别是什么 如何定义一个类、类?类和对象的区别和关系是什么
2025年3月19日 15:00

vigorously是什么意思(vortexed vigorously什么意思)
2025年4月4日 00:20

gateone旗舰店(Blackgateone是一个怎样的品牌)
2025年2月16日 10:30

license怎么授权(怎样实现java web应用系统授权license功能)
2025年2月18日 12:20

网页制作基础教程答案(几道网页制作的基础题,轻松获得50分不要错过啊!)
2025年3月25日 06:20

settimeoutinterval(settimeout和setinterval)
2025年3月28日 11:30

simplicity是什么意思(请问simplicity翻中文是什么意思)
2025年3月22日 13:20

exit setup是什么意思(电脑上出现:discard.changes.and.exit.setup.是什么意思)
2025年2月20日 13:00