java 判斷一個數組中個元素是否爲給定字符串的子串。返回一個boolean數組

public class SubString {

    public boolean[] chkSubStr(String[] p, int n, String s) {

        boolean [] str=new boolean[n];
    for (int i = 0; i < p.length; i++) {
        int result = s.indexOf(p[i]);

        if(result!=-1){
            str[i]=true;

        }
        else{
            str[i]=false;
        }
    }
    return  str;
    }
相關文章
相關標籤/搜索