java-获取字符串中字符位置

public static List<Integer> getStringIndex(String str, String key) {
    List<Integer> list = new ArrayList<Integer>();
    for (int i = 0; i < str.length(); i++) {
        if(str.regionMatches(true, i, key, 0, key.length())) {
            list.add(i);
        }
    }
    return list;
}

 

posted on 2020-10-27 20:40  yf_lan  阅读(1414)  评论(0编辑  收藏  举报