java程序检查给定字符串的重复值

时间:2013-12-18 08:01:38

标签: java

我得到一个问题,“我们会给你一个字符串ex:大多数人住在公寓里,他们也很富有。在这个给定的字符串中,我们必须删除”是“,我们必须显示休息......

我不知道该怎么办???

2 个答案:

答案 0 :(得分:2)

只需使用:"Most of the people are living in apartments and they are rich too".replaceAll("are","");

答案 1 :(得分:0)

参见文档

http://docs.oracle.com/javase/7/docs/api/java/lang/String.html#replaceAll(java.lang.String,java.lang.String)

使用

"Most of the people are living in apartments and they are rich too".replaceAll("are","")