python创建文件时去掉非法字符的方法

时间:2022-01-02 18:34:42

windows系统中文件名不能包含 \ / : * ? " < > |想要创建必须过滤掉这些字符

?
1
2
3
def setFileTitle(self,title):
   fileName = re.sub('[\/:*?"<>|]','-',title)#去掉非法字符
   self.file = open(fileName + ".txt","w+")

利用正则去掉非法的字符。

以上这篇python创建文件时去掉非法字符的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/u011444756/article/details/78311028