请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。
# -*- coding:utf-8 -*-
import re #re是正则表达式的模块
class Solution:
#s源字符串
def replaceSpace(self, s):
# write code here
#用re.sub(pattern,repl,string)实现正则表达式方式的字符串替换
return re.sub(" ","%20",s)