Java编程:从输入的字符串中删去输入的所有子字符串

Java编程:从输入的字符串中删去输入的所有子字符串,例如:输入字符串"thisastring",输入子字符串“is”,则删除后的字符串“thastring”... Java编程:从输入的字符串中删去输入的所有子字符串,例如:输入字符串"this a string",输入子字符串“is”,则删除后的字符串“th a string” 展开
 我来答
我是谁我在哪我要干什么呢
2012-04-23 · TA获得超过560个赞
知道小有建树答主
回答量:350
采纳率:100%
帮助的人:375万
展开全部
字符串中方法:String replaceFirst(String oldStr, String newStr)用newStr替换掉该字符串中的第一次出现的oldStr;
String replace(String oldStr, String newStr)用newStr替换掉该字符串中所用的oldStr。
你使用删除就是把newStr=""即可
知道了方法,这个写起来就没任何难度
多看看String类中的方法,用的频率太高了。
flyingFish211
2012-04-23 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
import java.util.Scanner;

public class Du {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.print("Please input the source string: ");
String source = scanner.nextLine();

System.out.print("Please input substring: ");
String subStr = scanner.next();

String newStr = source.replaceAll(subStr, "");
System.out.println("After removing the " + subStr + ", the source string is: " + newStr);
}

}

----------------testing
Please input the source string: this a string
Please input substring: is
After removing the is, the source string is: th a string
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
历盆郁7
推荐于2017-09-17 · TA获得超过4277个赞
知道大有可为答主
回答量:1795
采纳率:100%
帮助的人:959万
展开全部
public class Admin {

public static void main(String... args) {
String str = "this a string";
str = test(str, "is");
System.out.println(str);
}

private static String test(String str, String string) {
return str.replaceAll(string, "");
}

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式