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
자바의 String 중 subString () 방법에 대한 간단한 설명을 들려드리겠습니다. 많은 도움이 되었으면 좋겠습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
38. Java의 Leetcode 솔루션텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.