MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / substring

Method substring

Ports/CLDC11/src/java/lang/String.java:374–376  ·  view source on GitHub ↗
(int beginIndex)

Source from the content-addressed store, hash-verified

372 /// Examples:
373 /// "unhappy".substring(2) returns "happy" "Harbison".substring(3) returns "bison" "emptiness".substring(9) returns "" (an empty string)
374 public java.lang.String substring(int beginIndex){
375 return null; //TODO codavaj!!
376 }
377
378 /// Returns a new string that is a substring of this string. The substring begins at the specified beginIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-beginIndex.
379 /// Examples:

Callers 15

subSequenceMethod · 0.95
parseURIMethod · 0.95
relativizeMethod · 0.95
resolveMethod · 0.95
ofMethod · 0.95
toStringMethod · 0.95
parseLocalTimeMethod · 0.95
formatLocalTimeMethod · 0.95
formatMethod · 0.95
parseMethod · 0.95
sendMessageMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected