牛客网上的剑指 offer的在线编程:
题目描述
请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
# -*- coding:utf-8 -*-
#import re
class Solution:
# s 源字符串
def replaceSpace(self, s):
# write code here
# 方法一:利用 re 模块
#return re.sub('\s', '%20', s)
# 方法二:
new_s = []
for item in s:
if item == ' ':
new_s.append('%20')
else:
new_s.append(item)
return ''.join(new_s)