字符串数组中是否含有某个字符串

it2024-11-30  19

string[] str = {"a","b","c","d"};        string s = "e";        Response.Write(System.Array.IndexOf(str, s).ToString());

 

有将返回该字符串在数组中的索引。

无则返回-1;

转载于:https://www.cnblogs.com/_zjl/archive/2011/04/12/2013317.html

相关资源:数据结构—成绩单生成器
最新回复(0)