コードのこの行を修正するのに本当に助けが必要です.次の2つのエラーが発生し続けます:
最初のエラー: 配列が必要ですが、文字列が見つかりました if(x.length() == 0 && y.length() > 0 && y[0] == "*")
2 番目のエラー: replace(int,int) String newY = y.replace(0,1); に適したメソッドが見つかりません。任意の助けをいただければ幸いです
//Second string is empty and there is wildCard character
if(y.length() == 0 && wildCard)
{
return true;
}
if(x.length() == 0 && y.length() > 0 && y[0] == "*")
{
String newY = y.replace(0,1);
return match(x, newY, true);
}