我有一个unicode文件路径列表,其中我需要用英语变音符号替换所有变音符号。例如,我会ü与你,ä与ae等等。我已经定义了变音符号(键)及其变音符号(值)的字典。所以我需要将每个密钥与每个文件路径和密钥的位置进行比较,将其替换为值。这似乎很简单,但我无法让它工作。那里有人有什么想法吗?非常感谢任何反馈!
到目前为止代码:
# -*- coding: utf-8 -*-
import os
def GetFilepaths(directory):
"""
This function will generate all file names a directory tree using os.walk.
It returns a list of file paths.
"""
file_paths = []
for root, directories, files in os.walk(directory):
for filename in files:
filepath = os.path.join(root, filename)
file_paths.append(filepath)
return file_paths
# dictionary of umlaut unicode representations (keys) and their replacements (values)
umlautDictionary = {u'Ä': 'Ae',
u'Ö': 'Oe',
u'Ü': 'Ue',
u'ä': 'ae',
u'ö': 'oe',
u'ü': 'ue'
}
# get file paths in root directory and subfolders
filePathsList = GetFilepaths(u'C:\\Scripts\\Replace Characters\\Umlauts')
for file in filePathsList:
for key, value in umlautDictionary.iteritems():
if key in file:
file.replace(key, value) # does not work -- umlauts still in file path!
print file
答案 0 :(得分:5)
replace
方法返回一个新字符串,它不会修改原始字符串。
所以你需要
file = file.replace(key, value)
而非file.replace(key, value)
。
另请注意,您可以使用the translate
method一次完成所有替换,而不是使用for-loop
:
In [20]: umap = {ord(key):unicode(val) for key, val in umlautDictionary.items()}
In [21]: umap
Out[21]: {196: u'Ae', 214: u'Oe', 220: u'Ue', 228: u'ae', 246: u'oe', 252: u'ue'}
In [22]: print(u'ÄÖ'.translate(umap))
AeOe
所以你可以使用
umap = {ord(key):unicode(val) for key, val in umlautDictionary.items()}
for filename in filePathsList:
filename = filename.translate(umap)
print(filename)
答案 1 :(得分:0)
替换
行file.replace(key, value)
使用:
file = file.replace(key, value)
这是因为字符串在Python中是不可变的。
这意味着file.replace(key, value)
会返回 file
的副本并进行替换。