Method |
Description |
asc( )
|
Returns the ANSI character code of a character. |
charAt( )
|
Returns the character at the specified index. |
chr( )
|
Returns the character corresponding to the specified ANSI character code. |
compareTo( )
|
Returns the comparison of two strings. |
concat( )
|
Returns the concatenation of two strings. |
endsWith( )
|
Returns whether the given string ends with the specified suffix. |
equals( )
|
Returns whether the specified strings are the same in value. |
equalsIgnoreCase( )
|
Returns whether the specified string objects are the same when case is ignored. |
getChars( )
|
Returns a character array object containing the specified string. |
hashCode( )
|
Returns the hashcode of a string value. |
index( )
|
Returns the offset within a string where the specified substring first occurs. |
indexOf( )
|
Returns the offset within a string where the specified substring first occurs. |
intern( )
|
Returns the internal representation of the specified string. |
isDigit( )
|
Returns whether the specified character is a digit. |
isLetter( )
|
Returns whether the specified character is a letter. |
isLetterOrDigit( )
|
Returns whether the specified character is a letter or a digit. |
isLowerCase( )
|
Returns whether the specified character is in lowercase. |
isSpace( )
|
Returns whether the specified character is a white space. |
isUnicode( )
|
Returns whether the specified character is a Unicode character. |
isUpperCase( )
|
Returns whether the specified character is in uppercase. |
lastIndexOf( )
|
Returns the offset within a string where the specified substring last occurs. |
len( )
|
Returns the number of characters in a string. |
length( )
|
Returns the number of characters in a string. |
regionMatches( )
|
Returns whether a region of a string matches a region of another strings. |
replace( )
|
Returns a string where all occurences of a given character are replaced with another character. |
startsWith( )
|
Returns whether the given string starts with the specified prefix. |
strcat( )
|
Returns the concatenation of two strings. |
strcmp( )
|
Returns the comparison of two strings. |
String( )
|
Returns a new string set to specified value. |
substring( )
|
Returns a string that is a substring of the specified string. |
toLowerCase( )
|
Returns a string where all the letters in the specified string are turned into lowercase. |
toUpperCase( )
|
Returns a string where all the letters in the specified string are turned to uppercase. |
trim( )
|
Returns a string where all the leading and trailing white spaces are removed in the specified string. |
val( )
|
Returns the integer value represented in the specified string. |
valueOf( )
|
Returns the string representation of the specified value. |