(int beginIndex)
| 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: |
no outgoing calls
no test coverage detected