当前位置: 代码迷 >> J2SE >> 在java中判断一个字符串是否在一个字符串数组当中,该怎么解决
  详细解决方案

在java中判断一个字符串是否在一个字符串数组当中,该怎么解决

热度:162   发布时间:2016-04-24 17:49:58.0
在java中判断一个字符串是否在一个字符串数组当中
在java中判断一个字符串是否在一个字符串数组当中

------解决方案--------------------
String a[].....;
String b=......;
boolean InTheArray(String a[],String b)
{
boolean has=false;
for(int i=0; i <a.length(); i++)
if(a[i].contains(b)) has=true;
return has;
}
  相关解决方案