gpt4 book ai didi

java - 在 Java 中使用 indexOf

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

我正在尝试使用 indexOf("");在这个字符串上

"This i$ an aardvaAr yeEeeAs onDo qwerty XYZ9";

这是我的代码

        space = word.indexOf(" ");

tempWord = word.substring(0, space);

现在我得到了我想要的,它是 This 字符串,但是现在我如何得到它后面有这个的下一个空格:i$,以及下一个 unitl字符串的结尾?

*编辑

这个问题请不要使用数组

最佳答案

使用 overload of indexOf它也采用起始索引:

int nextSpace = word.indexOf(" ", space + 1);

(尽管可能有更好的方法来解决更大的问题。)

关于java - 在 Java 中使用 indexOf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14446723/

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