Your request for ...

Good morning Mr Praneel PIDIKITI
you have succ.....

This is my string i want to parse this string in order to get the value Praneel PIDIKITI i am using

  int begin_index = 0;
    int end_index = 0;

    String startkeyword = "Good morning";
    String endKeyword = " ???";
    int main_begin_index = lines[i].indexOf(startkeyword, begin_index);
    begin_index = main_begin_index;
    end_index = lines[i].indexOf(endKeyword, begin_index);

    String Name= lines[i].substring(begin_index + startkeyword.length(), end_index).trim();

What should be my endKeyword as it is the end of the line ??? can anyone help me ....

link|improve this question

2  
Is there a reason for not using indexOf for the "Mr Praneel PIDIKITI" String? – PaoloVictor Mar 15 '11 at 11:28
You already know that the string contains your name. Why not just extract it like what PaoloVictor suggested? – adarshr Mar 15 '11 at 11:29
I'm guessing that the name isn't going to be the same every time – Belinda Mar 15 '11 at 11:40
it's an example.. normally it should work with diff names too .. – Praneel Mar 15 '11 at 11:41
feedback

1 Answer

You may be better off using Regexp for this.

    Pattern p = Pattern.compile("Good morning (.*)");
    Matcher m = p.matcher(line[i]);
    String name = "";
    if (m.find())
        name = m.group(1);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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