破解此题的关键在于灵活运用字符串中常用的几个方法:

  1. str.toLowerCase()方法,此方法的具体功能是将字符串中的所有字母转为小写,此题中用到此方法的好处是可以更好的查询比较。
  2. str.spilt() 方法,此方法具体的作用是“分割”,具体如何分割取决于圆括号内的参数,例如str.spilt(“ ”) 的意思是凡是遇到空格就将元素分隔,除此还有str.spilt(“//.”) 的意思是遇到小数点就分隔,为什么是“//.” 而不是直接是“.”,这是为了避免冲突,转义字符,必须得加"//";
  3. str.equals() 方法,此方法用于对字符串真值的比较 熟悉运动运用此三种方法即可解决此题

import java.util.*; public class Main {

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str1=sc.nextLine().toLowerCase();
String str2=sc.nextLine().toLowerCase();
String[] str2Arrays=str2.split(" ");
int count=0,index=0;
for(int i=0;i<str2Arrays.length;i++) {
	if(str2Arrays[i].equals(str1)) {
		count++;
	}
    if(count==0){
        index=index+str2Arrays[i].length()+1;
    }
	
}
if(count==0) {
	System.out.println(-1);
}
else {
	System.out.print(count+" "+index);
}


}

}