替换空格

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

方法一:不使用新字符串
1.计算空字符串的个数
2.设置老子字符串的长度为替换空格后的字符串长度
3.从右边开始替换字符串,如果从左边开始替换的话每个字符串要移动多次,从右边开始只需要移动一次更效率

public class Solution {
    public String replaceSpace(StringBuffer str) {
        int spaceNum = 0;
        for(int i = 0;i=0;oldIndex--){
            if(str.charAt(oldIndex)==' '){
                str.setCharAt(newIndex--,'0');
                str.setCharAt(newIndex--,'2');
                str.setCharAt(newIndex--,'%');
            }else{
                str.setCharAt(newIndex--,str.charAt(oldIndex));
            }
        }
        return str.toString();
    }
}

方法二:使用新字符串
1.新建一个字符串
2.遍历老字符串的每一个字符,如果字符为空字符串,新字符串拼接“%20”,否则拼接字符

public class Solution {
    public String replaceSpace(StringBuffer str) {
        String string = str.toString();
        char[] charArray = string.toCharArray();
        StringBuffer newStr = new StringBuffer();
        for(int i = 0;i

你可能感兴趣的:(替换空格)