如果列表包含超过 100 个元素,例如:
list.add(str);
我们从循环中得到str的地方。
如果我们还有另外两个字符串,例如:
String strStart;
String strEnd;
现在我们要将两个字符串与所有列表元素进行比较。 例如: 如果列表包含"Afg"、"Alb"、"Ban"...和
strStart = "Alb";
strEnd = "Ger";
我们想创建一个新列表
only this two string
and the string between theme.
public static void main(String[] args) {
List<String> list = Arrays.asList("abc","def","ghi","jkl","mno","pqr","stw");
String strStart = "def";
String strEnd = "mno";
List<String> subList = list.subList(list.indexOf(strStart), list.indexOf(strEnd)+1);
System.out.println(subList);
}