[剑指offer] 替换空格

欢迎一起讨论

Geooo的个人博客:https://geooo.gitee.io/geoooblog/

 

请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。

public class Solution {
    public String replaceSpace(StringBuffer str) {
        StringBuffer res = new StringBuffer();
        int len = str.length() - 1;
        for(int i = len; i >= 0; i--){
            if(str.charAt(i) == ' ')
                res.append("02%");
            else
                res.append(str.charAt(i));
        }
        return res.reverse().toString();
    }
}

 

 
posted @ 2019-07-31 21:58  Geooo_030  阅读(130)  评论(0编辑  收藏  举报