Your request for ...
Good morning Mr Praneel PIDIKITI
you have succ.....
これは私の文字列です私が使用している値PraneelPIDIKITIを取得するためにこの文字列を解析したい
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();
それは行の終わりなので、私のendKeywordは何である必要がありますか?誰かが私を助けることができます...。