gpt4 book ai didi

java - 从字符串末尾提取子字符串直到遇到第一个空格?

转载 作者:行者123 更新时间:2023-11-30 03:12:58 27 4
gpt4 key购买 nike

我有这样一个字符串:

"De Proost Wim"

我需要一个字符串中的 "De Proost" 和另一个字符串中的 "Wim"

所以我需要从字符串末尾开始的第一个 ' '

最佳答案

您可以使用 lastIndexOf(' ')substring方法:

String s = "De Proost Wim";
int lastIndex = s.lastIndexOf(' ');
String s1 = s.substring(0, lastIndex);
String s2 = s.substring(lastIndex+1);

System.out.println(s1); //De Proost
System.out.println(s2); //Wim

只需确保 lastIndexOf 不返回 -1。

关于java - 从字符串末尾提取子字符串直到遇到第一个空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20616494/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com