Java删除字符串中的指定字符可以使用替换函数,替换成空白

String str = "上海市";
replaceString= str.replace("市","");

输出结果为 "上海”