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; }