Object Oriented Software Engineering   View all facts   Glossary   Help
subject > component > module > Java module > Java method > substring
Next Java methodtoString    UpJava method    Previous Java methodreadObject   

substring comparison table
Subject is a kind of is a subtopic of have example is an instance of have purpose have arguments have result
Java methodmethod9.1 - The Process of Design     
substring The Basics of Java
 String sub = "submariner".substring(0,3);  // = "sub"
Java methodto extract part of a stringstarting position and ending position + 1a new String with a sequence of characters from the original string

Next Java methodtoString    UpJava method    Previous Java methodreadObject