String class substring methods : String « Data Type « Java Tutorial






public class MainClass
{
   public static void main( String args[] )
   {
      String letters = "abcdefghijklmabcdefghijklm";

      // test substring methods
      System.out.printf( "Substring from index 20 to end is \"%s\"\n",
         letters.substring( 20 ) );
      System.out.printf( "%s \"%s\"\n", 
         "Substring from index 3 up to, but not including 6 is",
         letters.substring( 3, 6 ) );
   } // end main
}
Substring from index 20 to end is "hijklm"
Substring from index 3 up to, but not including 6 is "def"








2.19.String
2.19.1.Using String class
2.19.2.String Literals
2.19.3.String class constructors
2.19.4.Create String with char array
2.19.5.Length of a string
2.19.6.Assign String variable to null
2.19.7.Attempts to use string variable before it has been initialized
2.19.8.toLowerCase and toUpperCase
2.19.9.Comparing Two Strings
2.19.10.Demo for escape
2.19.11.Arrays of Strings: using 'new' operator
2.19.12.Arrays of Strings: Declare an array of String objects where the initial values determine the size of the array
2.19.13.String class substring methods
2.19.14.String Concatenation
2.19.15.String HashCode
2.19.16.Using trim() to process commands.
2.19.17.Remove leading and trailing white space from string
2.19.18.To remove a character
2.19.19.Remove a character at a specified position using String.substring
2.19.20.Get InputStream from a String
2.19.21.Demonstrate toUpperCase() and toLowerCase().
2.19.22.A string can be compared with a StringBuffer