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

I have text file in which I have following content.

Name Sahar Hassan
Age 26

I have wrote a Java code to find the location of the word "Name" and it works fine. I want to output the string right after the word "Name", that is "Sahar Hassan".

share|improve this question

2 Answers

up vote 2 down vote accepted

Keep it simple:

import java.io.*;
import java.util.Scanner;

File file = new File("somefilepath");
Scanner s = new Scanner(file);
String name = null;
while (s.hasNextLine()) {
    String line = s.nextLine();
    if (line.startsWith("Name"))
        name = line.substring(5);
}
// The variable "name" will be the name you seek (or be null if line not found)
share|improve this answer
Which package to import for Scanner? – Sahar Hassan Oct 16 '11 at 10:12
Thank you so much. Your post helped me a lot. – Sahar Hassan Oct 16 '11 at 11:11
@user648164 Added import statements you'll need – Bohemian Oct 16 '11 at 11:42

You could use indexOf and search for the newline character (starting from the index of Name). Like this:

String str = "Name Sahar Hassan\nAge 26";
int nameIndex = str.indexOf("Name");            // What you say you already have.

int newLineIndex = str.indexOf("\n", nameIndex);

// Extract part after "Name"
String name = str.substring(nameIndex + 5, newLineIndex);

System.out.println(name);  // Prints "Sahar Hassan"
share|improve this answer
1  
I will be inputting a text file. The code should read the string "Name" from the text file and output the word right after. Thanks – Sahar Hassan Oct 16 '11 at 9:43
2  
You already wrote that in the question. What is the point of repeating it? – Andrew Thompson Oct 16 '11 at 9:50
Andrew Thompson, In this answer, a String is used, Instead of that I have to pass an entire file. I would like to know how could I do that – Sahar Hassan Oct 16 '11 at 10:16

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.