java实现——004替换空格

时间:2014-05-08 01:08:18   收藏:0   阅读:364

1.创建新的字符串

bubuko.com,布布扣
 1 public class T004 {
 2     public static void main(String[] args){
 3         System.out.println(replaceBlank("we are happy"));
 4     }
 5     public static String replaceBlank(String s){
 6         String r = "%20";
 7         String result = "";
 8         for(int i=0;i<s.length();i++){
 9             if(s.charAt(i)==‘ ‘){
10                 result +=r;
11             }else{
12                 result += s.charAt(i);
13             }
14         }
15         return result;
16         
17     }
18 }
bubuko.com,布布扣

2.在原来的字符串上做替换

 

java实现——004替换空格,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!