淺談Java的String中的subString()方法
方法如下:
public String substring(int beginIndex, int endIndex)
第一個int為開始的索引,對應(yīng)String數(shù)字中的開始位置,
第二個是截止的索引位置,對應(yīng)String中的結(jié)束位置
1、取得的字符串長度為:endIndex - beginIndex;
2、從beginIndex開始取,到endIndex結(jié)束,從0開始數(shù),其中不包括endIndex位置的字符
如:
"hamburger".substring(4, 8) returns "urge" "smiles".substring(1, 5) returns "mile"
取長度大于等于3的字符串a(chǎn)的后三個子字符串,只需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
以上就是小編為大家?guī)淼臏\談Java的String中的subString()方法的全部內(nèi)容了,希望對大家有所幫助,多多支持腳本之家~
相關(guān)文章
Intellij IDEA 2017.3使用Lombok及常用注解介紹
這篇文章主要介紹了Intellij IDEA 2017.3使用Lombok及常用注解介紹,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-09-09JVM性能調(diào)優(yōu)實戰(zhàn):讓你的IntelliJ Idea縱享絲滑
這篇文章主要介紹了JVM性能調(diào)優(yōu)實戰(zhàn):讓你的IntelliJ Idea縱享絲滑的相關(guān)資料,本文給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2021-01-01Java編程實現(xiàn)對象克?。◤?fù)制)代碼詳解
這篇文章主要介紹了Java編程實現(xiàn)對象克?。◤?fù)制)代碼詳解,涉及了克隆的原因,如何實現(xiàn)克隆,克隆的一般步驟,深克隆與淺克隆的介紹等相關(guān)內(nèi)容,具有一定借鑒價值,需要的朋友可以參考下。2017-11-11springcloud使用Hystrix進行微服務(wù)降級管理
這篇文章主要介紹了springcloud使用Hystrix進行微服務(wù)降級管理,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-04-04