如何验证字符串数组包含某个字符串? [英] How can I verify that an array of strings contain a certain string?

查看:826
本文介绍了如何验证字符串数组包含某个字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

给出:

String[] directions = {"UP","DOWN","RIGHT","LEFT","up","down","right","left"};

String input = "Up";

如何验证stdin的输入是否在directions数组内?

How can I verify that an input from stdin is within the directions array or not ?

我可以循环使用input使用equal来检查每个项目,但是我正在寻找一种更优雅的方法.

I can make a loop and check each item with input using equal ,but I'm looking for a more elegant way.

关于罗恩

推荐答案

将有效路线数组转换为列表:

Convert the array of valid directions to a list:

List valid = Arrays.asList(directions)

或者直接将其声明为:

List valid = Arrays.asList("UP", "DOWN", "RIGHT", "LEFT", "up", "down", "right", "left")

然后可以使用contains方法:

if (valid.contains(input)) {
    // is valid
} else {
    // not valid
}

请注意,这与混合大小写输入(例如"Up")不匹配,因此您可能只想将大写值存储在列表中,然后使用valid.contains(input.toUpperCase())

Note that this won't match a mixed case input such as "Up" so you might want to store just the uppercase values in the list and then use valid.contains(input.toUpperCase())

这篇关于如何验证字符串数组包含某个字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆