我有一個.txt
文件中的路徑列表,我試圖用python解析出路徑名中的一個文件夾。Python解析路徑列表
9999\New_folder\A\23818\files\
9999\New_folder\A\18283_HO\files\
...
我很感興趣,這樣做是拉動9999\New_folder\A\
和\files\
,使我最終的字符串:
23818
18283_HO
任何幫助,將不勝感激!
編輯:非常感謝大家!用您的輸入提出以下代碼。
input_text = open('C:\\Python\\textintolist\\Document1.txt', 'r')
output_text = open('output.txt', 'w')
paths =[]
for line in input_text:
paths.append(line)
for path in paths:
output_text.write(str(path.split('\\')[3])+"\n")
使用正則表達式[正則表達式(http://docs.python.org/howto/regex.html) – profitehlolz 2012-08-13 21:12:38