fork download
  1.  
  2. class Tester
  3. {
  4. public static void main (String[] args)
  5. {
  6. String bat = "batman".substring(0, 3); //bat is now set to “bat”
  7. String woman = "catwoman".substring(3, 8); //woman is now set to “woman”
  8.  
  9. System.out.println(bat);
  10. System.out.println(woman);
  11. }
  12. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
bat
woman