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
|