Source of StringDemo.java


  1: 
  2: public class StringDemo
  3: {
  4:     public static void main(String[] args)
  5:     {
  6:         String sentence = "Text processing is hard!";
  7:         int position = sentence.indexOf("hard");
  8:         System.out.println(sentence);
  9:         System.out.println("012345678901234567890123"); 
 10:         System.out.println("The word \"hard\" starts at index "
 11:                            + position);
 12:         sentence = sentence.substring(0, position) + "easy!";
 13:                 sentence = sentence.toUpperCase();
 14:         System.out.println("The changed string is:");
 15:         System.out.println(sentence);
 16:     }
 17: }