0

我试图用“x”替换字符串中的空格作为函数,我不确定最好的方法是什么?

例如

how is your day ?

我希望这是 howxisxyourxdayx?

感谢您的帮助

4

4 回答 4

2

您可以使用替换()

text.replace(' ', 'x')
于 2013-04-12T04:46:52.830 回答
0

尝试使用替换

string.replace(' ', 'x')
于 2013-04-12T04:45:31.390 回答
0
>>> text = 'how is your day ?'
>>> text.replace(' ', 'x')
'howxisxyourxdayx?'
于 2013-04-12T04:46:52.547 回答
0

作为替代方案,您可以使用正则表达式模块

import re

In [9]: re.sub(' ', 'x', text)
Out[9]: 'howxisxyourxdayx?'
于 2013-04-12T04:50:20.770 回答