String java.lang.String.substring(int beginIndex)
String java.lang.String.substring(int beginIndex)
문자열의 일부를 반환한다
이 문자열의 하위 문자열인 문자열을 반환합니다. 서브스트링은 지정된 인덱스의 문자로 시작하여 이 문자열의 끝까지 확장됩니다. (인덱스의 시작은 0이다.)
String str = "012345";
String tmp = str.substring(1,4); //str에서 index의 범위 1~4의 문자들을 반환
System.out.println(tmp); //"123"이 출력된다
//index의 범위가 1~4라면 4는 범위에 포함되지 않는다.
Returns a string that is a substring of this string. The substring begins with the character at the specified index and extends to the end of this string.
Examples:
"unhappy".substring(2) returns "happy"
"Harbison".substring(3) returns "bison"
"emptiness".substring(9) returns "" (an empty string)
Parameters:
beginIndex the beginning index, inclusive.
Returns:
the specified substring.
Throws:
IndexOutOfBoundsException - if beginIndex is negative or larger than the length of this String object.
Author And Source
이 문제에 관하여(String java.lang.String.substring(int beginIndex)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@thdqudgns/String-java.lang.String.substringint-beginIndex저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)