在工作中的时候会遇到要处理文本中的空格的情况,在网上搜索了一番后只发现了去除两边或把所有空格去除的方法,故写此文。
e.g 我们现在要去除字符串中e中的第二个空格。
e="a a a"
sum=0
res=[]
for i,factor in enumerate(e):
if factor==" " and sum<1:
sum+=1
res.append(factor)
elif factor==" ":pass
else:res.append(factor)
print(''.join(res))
这样就会得到a aa
这样就能得到想要的结果了。想要要留、去除特定位置的字符也可以用类似的方法。我觉得这个问题应该还能简化,不过暂时还没想到,日后在说吧。