如题,如何将一个字符串中重复出现的字符替换为'*'呢(首次出现的不替换)? 我用python可以写
>>> str = 'babblea'
>>> for i in str:
... if str.count(i) > 1:
... str = str[::-1].replace(i, '*', str.count(i)-1)[::-1]
>>> str
'ba**le*'
感觉这个方法还算简洁,不知道你有没有什么好办法,欢迎留言!
如题,如何将一个字符串中重复出现的字符替换为'*'呢(首次出现的不替换)? 我用python可以写
>>> str = 'babblea'
>>> for i in str:
... if str.count(i) > 1:
... str = str[::-1].replace(i, '*', str.count(i)-1)[::-1]
>>> str
'ba**le*'
感觉这个方法还算简洁,不知道你有没有什么好办法,欢迎留言!