gpt4 book ai didi

arrays - 如何索引数组中的字符串?

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

我正在尝试获取数组中字符串的索引。

这样做最合适、最快捷的方法是什么?

最佳答案

假设你的主列表是:your_arr,多子串列表是:multiple:

def find_multiple_substring(your_arr, multiple):
res = [i for i, item in enumerate(your_arr) if all(x in item for x in multiple)]
return res[0] if res else -1

你可以这样调用它:

x = ["pink-one", "pink-two", "pink-three", "pink-four"]
y = ["pink", "one"] # For a search to be successful, all of these
# strings should be present in `x`.
find_multiple_substring(x, y) # returns 0

关于arrays - 如何索引数组中的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44210904/

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