public class Test {
public static void main(String[] args) {
String paragh = "Twinkle, twinkle, little star\r\n"
+ "How I wonder what you are\r\n"
+ "Up above the world so high\r\n"
+ "Like a diamond in the sky\r\n"
+ "Twinkle, twinkle, little star\r\n"
+ "How I wonder what you are";
String firstLine; // the first line should be derived from the paragh
}
}
Now what should i do to make paragh's first line in the firstLine String?