home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day25 / StringTest.java < prev    next >
Text File  |  2002-05-25  |  612b  |  18 lines

  1. import java.lang.System;
  2. import java.lang.String;
  3.  
  4. public class StringTest {
  5.  
  6.     public static void main(String args[]) {
  7.  
  8.     String s1 = "Teach Yourself C in 21 Days";
  9.  
  10.     System.out.println("The original string: " + s1);
  11.     System.out.println("Converted to uppercase: " + s1.toUpperCase());
  12.     System.out.println("Converted to lowercase: " + s1.toLowerCase());
  13.     System.out.println("The first Y is at position " + s1.indexOf('Y'));
  14.     System.out.println("Replacing 'e' with '!': "+s1.replace('e', '!'));
  15.     System.out.println("This string has " + s1.length()+" characters.");
  16.     }
  17. }
  18.