Java의 String에서 subString() 방법에 대해 간단히 설명합니다.

1394 단어 javasubstringString
방법은 다음과 같습니다.

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
자바의 String 중 subString () 방법에 대한 간단한 설명을 들려드리겠습니다. 많은 도움이 되었으면 좋겠습니다.

좋은 웹페이지 즐겨찾기