我想比較字符串,但下面的代碼將不起作用。我猜這是因爲不兼容,有沒有其他方法可以做到這一點?謝謝!比較字符串方法
public class test
{
public static void main(String[] args)
{
String str1 = "abc def ghi abc ded abc ghi";
String str2 = "ghi";
int count = 0;
String array[] = str1.split("\t");
for(int i = 0; i < array.length; i++)
{
if(array[i].equals(str2))
{
count++;
System.out.println(array[i]);
System.out.println(count);
}
}//for
}//main
}//test
除非在每個單詞之間有一個標籤,否則使用'split(「」)',因爲您想在其空白處拆分String而不是在標籤空間 – 2012-07-22 16:41:09