淺談Java的String中的subString()辦法。本站提示廣大學習愛好者:(淺談Java的String中的subString()辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是淺談Java的String中的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());
手冊中的詳細解釋以下:
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()辦法的全體內容了,願望對年夜家有所贊助,多多支撐~