gpt4 book ai didi

java - Android if 语句 - 如果字符串包含数组中的任何字符串

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

请你帮我一下。

我需要进行检查,检查 userCode 是否与字符串数组中的任何代码匹配,或者 oldUser 代码是否也与数组中的任何代码匹配

String[] code = {"1111", "2222", "3333", "4444", "5555"};

String userCode;
String oldUser;

if (userCode.equals(code) || oldUser.equals(code)) {

RUN

} else { die }

谢谢

最佳答案

要实现简单的验证,您可以循环遍历数组或者简单的方法来做到这一点

List< String > code = Arrays.asList( new String[] { "1111", "2222", "3333", "4444", "5555" } );

String userCode;
String oldUser;

if (code.contains(userCode) || code.contains(oldUser)) {

//doStuff()

} else {
return;
}

关于java - Android if 语句 - 如果字符串包含数组中的任何字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25478624/

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