我有这个字符串数组:
string[] stringArray = { "text1", "text2", "text3", "text4" }; string value = "text3"; 我想确定是否stringArray包含value。如果是这样,我想在数组中找到它的位置。
我不想使用循环。谁能建议我该怎么做?
您可以使用Array.IndexOf方法:
string[] stringArray = { "text1", "text2", "text3", "text4" }; string value = "text3"; int pos = Array.IndexOf(stringArray, value); if (pos > -1) { // the array contains the string and the pos variable // will have its position in the array }
问题来源于stack overflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。