gpt4 book ai didi

java - 如何检查正在循环的字符串的最后一个索引

转载 作者:行者123 更新时间:2023-12-02 02:41:09 25 4
gpt4 key购买 nike

我知道循环是如何工作的,但我不确定如何检查在这种情况下迭代的字符串的最后一个索引。这是一个例子:

String words = "Apple gum fruit red orange triangle";
for(String foo : words.split("\\s+"){
//How would I get the index of foo at any given point in the loop
}

最佳答案

String   sentence = "Apple gum fruit red orange triangle";
String[] words = sentence.split("\\s+");
for( int i = 0; i < words.length; ++i ) {
String foo = words[i];
// i is the index
}

关于java - 如何检查正在循环的字符串的最后一个索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45437729/

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