fork download
  1. public class StringTest
  2. {
  3. public static void main(String[] args)
  4. {
  5. String greeting = "Hello!";
  6. int len = greeting.length();
  7. System.out.println("Length is " + len);
  8. char ch = greeting.charAt(3);
  9. System.out.println("Character at position 3 is " + ch);
  10. String sub = greeting.substring(1, 3);
  11. System.out.println("Substring[1..3] is " + sub);
  12. int index1 = greeting.indexOf("lo");
  13. System.out.println("Index of \"lo\" is " + index1);
  14. int index2 = greeting.indexOf("low");
  15. System.out.println("Index of \"low\" is " + index2);
  16. }
Runtime error #stdin #stdout 0.26s 213120KB
stdin
Standard input is empty
stdout
Standard output is empty