parent
bbd27157a1
commit
f0ff78a4e6
@ -0,0 +1,26 @@ |
||||
--- |
||||
字符串相关 |
||||
--- |
||||
|
||||
[05. 替换空格](https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof/) |
||||
|
||||
```java |
||||
class Solution { |
||||
|
||||
public String replaceSpace(String s) { |
||||
StringBuilder builder = new StringBuilder(); |
||||
int i = 0; |
||||
while (i < s.length()) { |
||||
char c = s.charAt(i); |
||||
if (c == ' ') { |
||||
builder.append("%20"); |
||||
} else { |
||||
builder.append(c); |
||||
} |
||||
i++; |
||||
} |
||||
return builder.toString(); |
||||
} |
||||
} |
||||
``` |
||||
|
Loading…
Reference in new issue