所以我想通過一個字符串來查找它是否包含我正在尋找的子字符串。這是我寫了算法:Java通過字符串搜索
//Declares the String to be searched
String temp = "Hello World?";
//A String array is created to store the individual
//substrings in temp
String[] array = temp.split(" ");
//Iterates through String array and determines if the
//substring is present
for(String a : array)
{
if(a.equalsIgnoreCase("hello"))
{
System.out.println("Found");
break;
}
System.out.println("Not Found");
}
這個算法適用於「你好」,但我不知道如何得到它爲「世界」的工作,因爲它附加了一個問號。
感謝您的幫助!
你的意思是「世界」應與「世界?」 ???? – corlettk
是的,我希望它忽略問號。 – LTH