gpt4 book ai didi

java - 当元素中仅包含部分字符串时,如何从列表中获取索引?

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

假设我有一个字符串

String s = bob

和ArrayList

["alex [available]", "bob [away]", "craig [busy]", "david [gone fishing]"]

如何搜索列表以获取 [1] 处的元素?

最佳答案

String strToSearch = yourString + " [";//"bob ["

for (int i = 0; i < list.size(); i++){
if (list.get(i).startsWith(strToSearch)){
neededIndex = i;
break;
}
}

关于java - 当元素中仅包含部分字符串时,如何从列表中获取索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13681625/

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