你知道Flex是否有类似Contains()的方法来查找字符串???
中的单词我想做这样的事情:
for (int x = 0; x < Concepto.length; x++) {
if(cadena.contains(id[x])){
System.out.println("ID ya agregado...");
}
else{
cadena += "\n id= " + id[x];
}
for (int y = 0; y < Concepto.length; y++) {
if (id[x].equals(id[y])) {
if(cadena.contains(Concepto[y])){
System.out.println("Concepto ya agregado...");
}else{
cadena += "\n" + Concepto[y];
}
}else {
System.out.println("No se agrega...");
}
}
答案 0 :(得分:3)
使用indexOf
方法
if(cadena.indexOf(Concepto[y]) > -1)