4个回答
展开全部
public class test {
public static void main(String[] args) {
String str = "aa bb cc dd ee cs ";
String s = "";
for (int i = 0; i < str.length() - 1; i++) {
if ((int) str.charAt(i) == 32 && (int) str.charAt(i + 1) == 32) {
continue;
}
s += str.charAt(i);
}
if ((int) str.charAt(str.length() - 1) != 32)
s += str.charAt(str.length() - 1);
System.out.println(s);
}
}
public static void main(String[] args) {
String str = "aa bb cc dd ee cs ";
String s = "";
for (int i = 0; i < str.length() - 1; i++) {
if ((int) str.charAt(i) == 32 && (int) str.charAt(i + 1) == 32) {
continue;
}
s += str.charAt(i);
}
if ((int) str.charAt(str.length() - 1) != 32)
s += str.charAt(str.length() - 1);
System.out.println(s);
}
}
展开全部
不用那么麻烦,用正则表达式很简单
public static void main(String args[])
{
String str = "aa bb cc dd";
String test = str.replaceAll("\\s{1,}", " ");
System.out.println(test);
}
把所有多于1个的空格替换成1个空格
public static void main(String args[])
{
String str = "aa bb cc dd";
String test = str.replaceAll("\\s{1,}", " ");
System.out.println(test);
}
把所有多于1个的空格替换成1个空格
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class TestString01 {
public static void main(String[] args) {
String str = "aa bb cc dd";
/*String s1[] = str.split(" ");
for(int i=0;i<s1.length;i++){
System.out.print(s1[i]);
}*/
String s1 = str.replaceAll("aa bb cc dd", "aabbccdd");
System.out.println(s1);
}
}
public static void main(String[] args) {
String str = "aa bb cc dd";
/*String s1[] = str.split(" ");
for(int i=0;i<s1.length;i++){
System.out.print(s1[i]);
}*/
String s1 = str.replaceAll("aa bb cc dd", "aabbccdd");
System.out.println(s1);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
static String begin(String s)
{
int i=0;String news="";
while(i<s.length())
{
if(s.charAt(i)!=' ')new s+=s.charAt(i);
i++
}
return news;
}
{
int i=0;String news="";
while(i<s.length())
{
if(s.charAt(i)!=' ')new s+=s.charAt(i);
i++
}
return news;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询