home *** CD-ROM | disk | FTP | other *** search
- class indexOfDemo {
- public static void main(String[] var0) {
- String var1 = "Now is the time for all good men to come to the aid of their country and pay their due taxes.";
- System.out.println(var1);
- System.out.println("indexOf(t) = " + var1.indexOf("t"));
- System.out.println("lastIndexOf(t) = " + var1.lastIndexOf("t"));
- System.out.println("indexOf(the) = " + var1.indexOf("the"));
- System.out.println("lastIndexOf(the) = " + var1.lastIndexOf("the"));
- System.out.println("indexOf(t, 10) = " + var1.indexOf("t", 10));
- System.out.println("lastIndexOf(t, 50) = " + var1.lastIndexOf("t", 50));
- System.out.println("indexOf(the, 10) = " + var1.indexOf("the", 10));
- System.out.println("lastIndexOf(the, 50) = " + var1.lastIndexOf("the", 50));
- }
- }
-