fix(tiktok): 修改文件名匹配正则表达式

This commit is contained in:
imgyh 2023-03-28 21:08:35 +08:00
parent 2496ccd90c
commit 8ce13c0d72

View File

@ -42,7 +42,7 @@ class Utils(object):
替换非法字符缩短字符长度使其能成为文件名
"""
# 匹配 汉字 字母 数字 空格
match = "([0-9A-Za-z\u4e00-\u9fa5 #_-]+)"
match = "([0-9A-Za-z\u4e00-\u9fa5]+)"
result = re.findall(match, filenamestr)