码迷,mamicode.com
首页 > 编程语言 > 详细

python 保存文件时候, 去除名字中的非法字符

时间:2018-01-19 18:48:05      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:pos   nbsp   plain   alt   date   ace   下划线   ida   gpo   

import re

 
 
def validateTitle(title):
    rstr = r"[\/\\\:\*\?\"\<\>\|]"  # ‘/ \ : * ? " < > |‘
    new_title = re.sub(rstr, "_", title)  # 替换为下划线
    return new_title

python 保存文件时候, 去除名字中的非法字符

标签:pos   nbsp   plain   alt   date   ace   下划线   ida   gpo   

原文地址:https://www.cnblogs.com/php-linux/p/8318286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!