2024-11-03 01:12:03
谢谢怪我没说清楚,由于数组里值较多,最好不用遍历的方法进行判断,有其他方法吗?
2024-11-03 05:19:58
我用了第一种API方法,不成功啊,数组设置一到十,字符串,任何一个文字,都返回true
那第二种呢?
你再仔细试试!
谢谢你,第二种也可以,只不过采纳的那个比你回答的要早一点,对不起了只能给他了。
2024-11-03 04:25:32
谢谢怪我没说清楚,由于数组里值较多,最好不用遍历的方法进行判断,有其他方法吗?
String str = Arrays.toString( b );
Pattern rex = Pattern.compile( a );
Matcher m = rex.matcher(str);
boolean flag = m.find();
正则表达式怎么样