在遍历多个文件名的同时查找特定的子字符串

时间:2018-12-14 19:24:40

标签: python string python-3.x substring

在遍历文件时,我需要找到大量文件的标识号。

文件名将加载到列表中,如下所示:

ID322198.nii
ID9828731.nii
ID23890.nii
FILEID988312.nii

因此,解决此问题的最佳方法是找到位于ID.nii之间的数字

由于位数不同,我不能简单地选择文件名的[-10:-4]。有什么想法吗?

5 个答案:

答案 0 :(得分:1)

要找到ID.nii的位置,可以使用python的index()函数

for line in file:
    idpos = 
    nilpos = 
    data = 

或作为整数列表:

[ int(line[line.index("ID")+1:line.index(".nii")]) for line in file ]

答案 1 :(得分:1)

您可以使用正则表达式(在操作here中查看它):

import re

files = ['ID322198.nii','ID9828731.nii','ID23890.nii','FILEID988312.nii']

[re.findall(r'ID(\d+)\.nii', file)[0] for file in files]

返回:

['322198', '9828731', '23890', '988312']

答案 2 :(得分:0)

使用rindex

s = 'ID322198.nii'
s = s[s.rindex('D')+1 : s.rindex('.')]
print(s)

返回:

322198

然后将此正弦波应用于字符串列表。

答案 3 :(得分:0)

for name in files:
    name = name.replace('.nii', '')
    id_num = name.replace(name.rstrip('0123456789'), '')

这是如何工作的:

# example
name = 'ID322198.nii'

# remove '.nii'. -> name1 = 'ID322198'
name1 = name.replace('.nii', '') 

# strip all digits from the end. -> name2 = 'ID'
name2 = name1.rstrip('0123456789') 

# remove 'ID' from 'ID322198'. -> id_num = '322198'
id_num = name1.replace(name2, '')

答案 4 :(得分:0)

似乎您可以过滤出数字,如下所示:

digits = ''.join(d for d in filename if d.isdigit())

只要文件名中没有其他数字(例如带.1后缀或类似内容的备份),该方法就可以很好地工作。