码迷,mamicode.com
首页 > 其他好文 > 详细

替换空格

时间:2020-01-28 21:16:53      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:字符   set   space   class   tchar   while   event   code   for   

请实现一个函数,将一个字符串中的每个空格替换成“%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

 

替换空格

标签:字符   set   space   class   tchar   while   event   code   for   

原文地址:https://www.cnblogs.com/hyxsolitude/p/12238694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!