gpt4 book ai didi

java - 查找字符串数组的索引

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

我有一个字符串:

String str = "sces123 4096 May 27 16:22 sces123 abc";

我想从字符串中获取sces123 abc。我的代码是:

String[] line = str.split("\\s+");
String name = str.substring(str.indexOf(line[5]));

它返回整个字符串。

不知道该怎么办。

感谢任何帮助!

最佳答案

你的代码应该是

String[] line = str.split("\\s+");
String name = str.substring(str.lastIndexOf(line[5]));

因为 str.lastindexOf(line[5]) 返回 0,然后子字符串返回整个字符串。

关于java - 查找字符串数组的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30481869/

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