Java   View all facts   Glossary   Help
member > method > substring
Next methodaccessor method    Upmethod    Previous methodrecursive method   

substring comparison table
Subject have is a kind of is a synonym of is a subtopic of have example is an instance of have purpose have arguments has definition is partitioned into have result
methoda comment at its head if the method is non-obviousspecificationmember functionMethods    Code that specifies some of the behaviour of a class or instancestatic method, instance method 
substringspecification  Strings
 String sub = "submariner".substring(0,3);  // = "sub"
methodto extract part of a stringstarting position and ending position + 1  a new String with a sequence of characters from the original string

Next methodaccessor method    Upmethod    Previous methodrecursive method