我正在尝试使用Python中的正则表达式检查文件名。名称应具有以下方案或结构:' CB_00xx_D0xx_Vxxxxx00_Vxxxxxx00_Vxx ',其中x是0到9之间的数字。可以用一个正则表达式来完成吗? 以及如何?
答案 0 :(得分:0)
请遵循
import re
regBuilder = re.compile('^CB_00\d\d_D0\d\d_V\d{5}00_V\d{6}00_V\d\d$')
if regBuilder.match("CB_0045_D056_V5678900_V12345600_V34") :
print ('Match')
答案 1 :(得分:-1)
string currentFile = files[whichScreenShotIsShown];
File.Delete(currentFile );