当前位置:主页 > 软件编程 > Python代码 >
时间:2022-05-02 10:40:33 | 栏目:Python代码 | 点击:次
windows系统中文件名不能包含 \ / : * ? " < > |想要创建必须过滤掉这些字符
def setFileTitle(self,title): fileName = re.sub('[\/:*?"<>|]','-',title)#去掉非法字符 self.file = open(fileName + ".txt","w+")
利用正则去掉非法的字符。