摘要: 代码: import os import re def remove_korean_text(srt_content): # 定义韩文字符的Unicode范围 pattern = re.compile(r'[\uac00-\ud7a3]+', re.UNICODE) # 使用正则表达式替换韩文字符为 阅读全文
posted @ 2024-09-25 22:22 大话人生 阅读(7) 评论(0) 推荐(0) 编辑