charAt()
|
|
Returns the character at the specified index 지정한
위치의 문자를
반환합니다.
|
append()
|
|
Appends the String representation of the argument specified
|
capacity()
|
|
Returns the internal capacity of the String
|
contains()
|
|
Returns true if there is an occurrence of the input string
|
getBytes()
|
|
Returns an array of bytes containing the characters of the String as bytes 스트링을
바이트 단위로
계산하여 반환합니다.
|
setCharAt()
|
|
Changes the character specified at the specified index 지정한
위치에 문자를
변경합니다.
|
endsWith()
|
|
Returns true if the current string ends with the input string
|
equals()
|
|
Compares a string to a specified object 지정한
개체와 스트링을
비교합니다.
|
indexOf()
|
|
Returns the index value of the first occurrence of a character within the input string 입력
스트링에서 처음으로
일치하는 문자의
위치를 반환합니다.
|
length()
|
|
Returns the number of characters in the input string 입력
스트링의 수를
반환합니다.
|
replace()
|
|
Replaces all the occurrences of a character in a string with the specified character
스트링에서
지정한 문자와
일치하면 대체합니다. |
startsWith()
|
|
Returns true if the current string starts with the input string
|
substring()
|
|
Returns a new string that is part of the input string
|
toCharArray()
|
|
Returns the content of the specified String as an array of chars
|
toLowerCase()
|
|
Converts all the characters to lower case 모든
문자를 소문자로
변환합니다.
|
toUpperCase()
|
|
Converts all the characters to upper case 모든
문자를 대문자로
변환합니다.
|