Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am fairly new to programming so please bear with me. Say I have a large string such as this.

String story = "This is the first line.\n"
+ "This is the second line.\n"
+ "This is the third line\n"
+ "This is the fourth line.\n"
+ "This is the fifth line.";

How would I go about extracting the first, fourth, and so on lines?

share|improve this question
2  
You should consider using System.getProperty("line.separator") as line break, not \n, because this would be plattform specific. – Michael Konietzka Aug 10 '10 at 18:24

6 Answers

If you want to avoid creating arrays, you can use Scanner

Scanner scanner = new Scanner(story);
while(scanner.hasNextLine()) {
  System.out.println(scanner.nextLine());
}
share|improve this answer
1  
+1 for not using \n – Michael Konietzka Aug 10 '10 at 18:21
+1 as well, nice solution – Bozho Aug 10 '10 at 18:26
String[] lines = story.split(System.getProperty("line.separator"));
String firstLine = lines[0];
// and so on

You can split on \n, but thus you are fixed to the line separator of *nix systems. If it happens that you have to parse on windows, splitting on \n won't work (unless of course your string is hard-coded, which defeats the whole purpose of splitting - you know which are the lines beforehand)

share|improve this answer
+1 for being the first answer to mention OS-dependency. – Andrzej Doyle Aug 10 '10 at 18:14

You can split your string into lines using the split method and then index to get the line you want:

String story =
    "This is the first line.\n" +
    "This is the second line.\n" +
    "This is the third line\n" +
    "This is the fourth line.\n" +
    "This is the fifth line."; 

String[] lines = story.split("\n");
String secondLine = lines[1];
System.out.println(secondLine);

Result:

This is the second line.

Notes:

  • In Java indexing arrays starts at zero, not one. So the first line is lines[0].
  • The split method takes a regular expressions as its argument.
share|improve this answer
String[] lines = story.split('\n');

String line_1 = lines[0];
String line_4 = lines[3];

or something along those lines

share|improve this answer

If the string is going to be very long, you can use a combination of a BufferedReader and a StringReader to do it one line at a time:

String story = ...;
BufferedReader reader = new BufferedReader(new StringReader(story));

while ((str = reader.readLine()) != null)  {
   if (str.length() > 0) System.out.println(str);
}

Otherwise, split the string into an Array, if it's small enough using Split:

String[] lines = story.split("\n");
share|improve this answer

You would split the string into an array and then select the array elements you want

String[] arr = story.split("\n")
arr[0] // first line
arr[3] // fourth line
share|improve this answer
it doesn't return an ArrayList – Bozho Aug 10 '10 at 18:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.