給定兩個字符串base和remove,返回基本字符串的一個版本,其中刪除字符串的所有實例都已被刪除(不區分大小寫)。您可能會認爲刪除字符串的長度爲1或更多。只刪除不重疊的實例,所以用「xxx」刪除「xx」留下「x」。如何刪除部分字符串
withoutString("Hello there", "llo") → "He there"
withoutString("Hello there", "e") → "Hllo thr"
withoutString("Hello there", "x") → "Hello there"
爲什麼我不能使用此代碼:
public String withoutString(String base, String remove)
{
base.replace(remove, "");
return base;
}
我沒有得到,爲什麼人們投票了這個問題..:P – 2014-12-04 12:37:50