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 >
Wrap
Text File
|
2002-05-25
|
612b
|
18 lines
import java.lang.System;
import java.lang.String;
public class StringTest {
public static void main(String args[]) {
String s1 = "Teach Yourself C in 21 Days";
System.out.println("The original string: " + s1);
System.out.println("Converted to uppercase: " + s1.toUpperCase());
System.out.println("Converted to lowercase: " + s1.toLowerCase());
System.out.println("The first Y is at position " + s1.indexOf('Y'));
System.out.println("Replacing 'e' with '!': "+s1.replace('e', '!'));
System.out.println("This string has " + s1.length()+" characters.");
}
}