Please enable JavaScript.
Coggle requires JavaScript to display documents.
String - Coggle Diagram
String
common String operation
-
-
int indexOf(String str)
-
-
If str is not a substring of this string, -1 is returned
-
-
-
substring(int startIndex, int endIndex)
-
-
The method throws a StringIndexOutOfBoundsExceptiog if start Index is negative, or endIndex is larger than the length of the string, or start Index is larger than endIndex
-
-
-