gpt4 book ai didi

java - 搜索列表中的元素

转载 作者:行者123 更新时间:2023-12-01 17:27:15 25 4
gpt4 key购买 nike

我的代码中有一个列表:

def officers = [[name:'Mark', surname: 'Pen'], [name:'Maria', surname: 'Charlote']]

现在可以搜索这个列表吗?我的意思是类似

def found = officers.findNameLike('%Mar%') 

因此它将返回这 2 个值,因为它们的名称上有 MAR 字符。

这可能吗?或者他们无论如何都围绕这个?

最佳答案

我不知道 Groovy,但是通过快速 Google,像这样的非笨重的东西应该可以工作:

def found = officers.findAll { it.name =~ /Mar/ }

关于java - 搜索列表中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13945828/

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