String java.lang.String.substring(int beginIndex)

1993 단어 JavaJava

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.

좋은 웹페이지 즐겨찾기