public int count(String str){
int count=0;
int index=str.indexOf("Hello");
System.out.println(index);
while(index!=-1)
{
index=str.indexOf("Hello",index+1);
count++;
}
return count;
}
通过测试用例时出现问题。
Testcase Pass/Fail Parameters Actual Output Expected Output
#1 Pass 'Hello how are you' 1 1
#2 Fail 'HELLO how are you' 0 1
答案 0 :(得分:4)
Java(非常)区分大小写。 Hello
与HELLO
不同。
您可以做的是将原始String
转换为小写,然后搜索hello
的出现次数。
答案 1 :(得分:1)
你错过了关于区分大小写的观点。
你可以尝试如下..
public static void main(String args[]) throws Exception {
System.out.println(count("Hello how are you"));
}
public static int count(String str) {
String[] arr=str.split(" ");
int count=0;
for(String i:arr){
if(i.equalsIgnoreCase("hello")){
count++;
}
}
return count;
}
答案 2 :(得分:1)
试试这个..
public int count(String str){
int count=0;
String str1="";
for(int i=0;i<str.length();i++){
char ch=str.charAt(i);
if(ch>=65 && ch <=90){
ch=(char)(ch + 32);
str1=str1 + ch;
}
else
str1=str1+ch;
}
int index=str1.indexOf("hello");
System.out.println(index);
while(index!=-1)
{
index=str1.indexOf("hello",index+1);
count++;
}
return count;
}
答案 3 :(得分:0)
如果您看到indexOf()
的源代码,则通过将字符串转换为char数组来逐字符比较字符串,因此e
不等于E
,并且它在那里失败。
答案 4 :(得分:0)
使用java8流API:
private static long count(String string) {
return Arrays.asList(string.split(" ")).parallelStream().map(str -> str.toLowerCase())
.filter(str -> "hello".equals(str)).count();
}
public static void main(String args[]) {
String s1 = "Hello how are you";
System.out.println(Long.toString(count(s1)));
String s2 = "HELLO how are you";
System.out.println(Long.toString(count(s2)));
}
答案 5 :(得分:0)
//返回字符串&#34; hello&#34;的次数。出现在给定字符串中的任何位置。
public class CountHello { static String testcase1 =&#34;你好!你好!你好吗&#34 ;;
public static void main(String args[]){
CountHello testInstance= new CountHello();
int result = testInstance.count(testcase1);
System.out.println(result);
}
public int count(String str1){
//write your code here
String str2="Hello";
int len1=str1.length();
int len2=str2.length();
int count=0;
for(int i=0;i<(len1-len2+1);i++)
{ String str="";
for(int j=i;j<i+len2;j++)
{
str=str+str1.charAt(j);
if(str.equalsIgnoreCase(str2)) count++;
}
}
return count;
}
}