我有这段代码搜索字符串数组并在输入字符串与字符串的第一个字符匹配时返回结果:
for (int i = 0; i < countryCode.length; i++) {
if (textlength <= countryCode[i].length()) {
if (etsearch
.getText()
.toString()
.equalsIgnoreCase(
(String) countryCode[i].subSequence(0,
textlength))) {
text_sort.add(countryCode[i]);
image_sort.add(flag[i]);
condition_sort.add(condition[i]);
}
}
}
但我也想得到那些字符串,输入字符串不仅在第一个字符中匹配,而且在字符串中的任何位置都匹配?这个怎么做?