解析字符串 - 换行符的结束索引应该是什么?

发布于 2024-10-22 04:25:22 字数 606 浏览 1 评论 0原文

Your request for ...

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

这是我的字符串,我想解析该字符串以获得值 Praneel PIDIKITI 我正在使用

  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 应该是什么,因为它是行尾??? 谁能帮助我....

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 ....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫﹏色ふ单纯 2024-10-29 04:25:22

为此,您最好使用正则表达式。

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

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);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文