替换空格

Posted hyxsolitude

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换空格相关的知识,希望对你有一定的参考价值。

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

https://www.nowcoder.com/questionTerminal/4060ac7e3e404ad1a894ef3e17650423

 

技术图片
 1 public class Solution {
 2     public String replaceSpace(StringBuffer str) {
 3         int n = str.length();
 4         int sum = 0;
 5         for (int i = 0; i < n; ++i) {
 6             if (str.charAt(i) == ‘ ‘) sum++;
 7         }
 8         System.out.println(n);
 9         str.setLength(n + sum * 2);
10         
11         int i = n - 1, j = i + sum * 2;
12         while (i >= 0) {
13             if (str.charAt(i) == ‘ ‘) {
14                 str.setCharAt(j--, ‘0‘);
15                 str.setCharAt(j--, ‘2‘);
16                 str.setCharAt(j--, ‘%‘);
17                 i--;
18                
19             } else {
20                 str.setCharAt(j, str.charAt(i));
21                 j--;i--;
22                 
23             }
24             
25         }
26         return str.toString();
27     }
28 }
View Code

 

以上是关于替换空格的主要内容,如果未能解决你的问题,请参考以下文章

如何从主要活动中替换片段

用片段替换时操作栏向下移动

如何在android studio中用另一个片段替换一个片段

用片段替换某些东西

试图替换片段,但它一直显示相同的片段

正则表达式替换markdown文件代码块标记中的所有空格