package xinShou;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.BufferedReader;
public class p1308 {
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String s1 = in.readLine();
String s2 = in.readLine();
int order = 0;
int first = 0;
int sum = 0;
for (String s : s2.split(" ")) {
if (s1.equalsIgnoreCase(s)){
if (first == 0){
first = sum;
}
order++;
}
sum = sum + s.length() + 1;
}
if(order == 0) {
System.out.println(-1);
} else {
System.out.println(order + " " + first);
}
}
}
几种切割方法
- split(String regex, int limit)
regex – 正则表达式分隔符。
limit – 分割的份数。
注意: . 、 $、 | 和 * 等转义字符,必须得加 \。
注意:多个分隔符,可以用 | 作为连字符。 - substring(int beginIndex, int endIndex)
beginIndex – 起始索引(包括), 索引从 0 开始。
endIndex – 结束索引(不包括)。