- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个字符串数组,每个字符串都是用 "<x> <y>"
的形式构建的.如果y
从 'n'
开始,看来我的程序找不到它。
所以,不起作用的字符串是。
"w north",
"w n",
"walk n",
"walk north"
你能帮忙解释一下原因吗?
string[] next = { "next", "ne", "nx", "nxt" };
string[] yes = { "yes", "y" };
string[] no = { "no", "n" };
string[] clear = { "clear", "c" };
string[] help = { "help", "h" };
string[] walk =
{
"w north",
"w south",
"w west",
"w east",
"w n",
"w s",
"w w",
"w e",
"walk north",
"walk south",
"walk west",
"walk east" ,
"walk n",
"walk s",
"walk w",
"walk e"
};
//Checks if any input match the arrays
public string Input(string input)
{
input = input.ToLower();
if (next.Any(input.Contains))
{
return "next";
}
else if (yes.Any(input.Contains))
{
return "yes";
}
else if (no.Any(input.Contains))
{
return "no";
}
else if (clear.Any(input.Contains))
{
return "clear";
}
else if (help.Any(input.Contains))
{
return "help";
}
else if (walk.Any(input.Contains))
{
MessageBox.Show("test input");
Location C_locations = new Location();
C_locations.Change_location(input);
return "walk";
}
else
{
return "not found";
}
}
字符串:"w north"
, "w n"
, "walk n"
和 "walk north"
,应该运行这部分代码:
else if (walk.Any(input.Contains))
{
MessageBox.Show( "test input" );
Location C_locations = new Location();
C_locations.Change_location( input );
return "walk";
}
最佳答案
您的代码不起作用的原因在于您的no
数组的内容:它包含一个单字母字符串"n"
。正是这个字符串使得
no.Any( input.Contains )
对于包含字母 'n'
的任何输入字符串,求值为 True
。
为了解决这个问题,您可以将 walk
的检查移动到 if
/then
/ 的顶部else
链。但是,该解决方案不会过于稳健:"yellow"
将被归类为 "yes"
,"cat"
将变为 “清除”
,等等。
关于c# - 在数组中找不到某些值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16547638/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!