feat: (UNFINISH) 正则匹配检测测试

This commit is contained in:
2024-06-03 13:44:03 +08:00
parent da9b2b52ac
commit 1a71a72ddf
4 changed files with 35 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ import sys
def read_file_content(file_path: str) -> str:
try:
with open(file_path, "r", encoding="utf-8") as file:
with open(file_path, "r", encoding="utf-8",errors="ignore") as file:
return file.read()
except FileNotFoundError:
print("Error: File not found.")