去掉所有出现的子字符串(最常见)这是最直接的理解:从一个主字符串中,移除所有与目标子字符串完全匹配的部分,核心方法:使用String.replace()或String.replaceAll(),方法1:使用String.repl...