时间:2021-05-19
方法如下:
第一个int为开始的索引,对应String数字中的开始位置,
第二个是截止的索引位置,对应String中的结束位置
1、取得的字符串长度为:endIndex - beginIndex;
2、从beginIndex开始取,到endIndex结束,从0开始数,其中不包括endIndex位置的字符
如:
取长度大于等于3的字符串a的后三个子字符串,只需a.subString(a.length()-3, a.length());
手册中的具体说明如下:
substring
public String substring(int beginIndex, int endIndex)
Returns a new string that is a substring of this string. The substring begins at the specified beginIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-beginIndex.
Examples:
"hamburger".substring(4, 8) returns "urge"
"smiles".substring(1, 5) returns "mile"
Parameters:
beginIndex - the beginning index, inclusive.
endIndex - the ending index, exclusive.
Returns:
the specified substring.
Throws:
IndexOutOfBoundsException - if the beginIndex is negative, or endIndex is larger than the length of this String object, or beginIndex is larger than endIndex
以上就是小编为大家带来的浅谈Java的String中的subString()方法的全部内容了,希望对大家有所帮助,多多支持~
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
使用substring()或slice()方法(NN4+,IE4+),下面说明它们的具体用法。substring()的原型为:string.substring(
截取abcdefg右边的fg方法一string="abcdefg"alert(string.substring(string.length-2,string.l
本文为大家介绍三种js截取字符串的方法:substring()方法;substr()方法;slice()方法;方法1:substring()方法string.s
一.Java中关于String类的常用方法本文只用来自己做笔记,随便写写,方便自己理解,谢谢各位的指正。下面是摘抄慕课的一部分1.使用substring(beg
1、利用String类提供的indexOf()和substring()快速的获得某个文件中的特定内容publicstaticvoidmain(String[]a