Flex中的String.contains()?

时间:2014-12-16 20:24:06

标签: string actionscript-3 flex flash-builder contains

你知道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...");
            }


        }

1 个答案:

答案 0 :(得分:3)

使用indexOf方法

if(cadena.indexOf(Concepto[y]) > -1)