Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
190 views
in Technique[技术] by (71.8m points)

python - Replace characters in string from dictionary mapping

I'm pretty new to python, so forgive me if I am missing an obvious built-in function.

I have a dictionary mapping I generated like the following:

dictionary = dict(zip(restAlphaSet,list(item)))

where restAlphaSet it a string and list(item) is list converted iteration

I am trying to use this to replace all the characters in my string. I found a replaceAll function online that looks like the following:

def replace_all(text, dic):
for i, j in dic.iteritems():
    if i != j:
        text = text.replace(i, j)
return text

Unfortunately, this is flawed as if the mapping has a->b, b->a, then nothing would get changed as the b's would be changed back to the a's.

I found the translate function, but it doesn't accept a dictionary input.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Translations are way faster.

>>> import string
>>> text.translate(string.maketrans("".join(restAlphaSet),"".join(item)))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...