substring()

PHOTO EMBED

Sun Nov 06 2022 03:42:56 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

public class Poetry {
  
	public static void main(String[] args) {
      
    String line = "The Heav'ns and all the Constellations rung";     
    // Change the arguments:
    System.out.println(line.substring(4, 11));
    System.out.println(line.substring(24));
  }
  
}
content_copyCOPY