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 ....
indexOffor the"Mr Praneel PIDIKITI"String? – PaoloVictor Mar 15 '11 at 11:28