Fix text formatting

This commit is contained in:
KamioRinn 2024-02-19 02:11:02 +08:00
parent 7823fa08dc
commit 55f82e9ad1
2 changed files with 7 additions and 4 deletions

View File

@ -562,10 +562,13 @@ def cut5(inp):
# if not re.search(r'[^\w\s]', inp[-1]): # if not re.search(r'[^\w\s]', inp[-1]):
# inp += '。' # inp += '。'
inp = inp.strip("\n") inp = inp.strip("\n")
punds = r'[,.;?!、,。?!;]' punds = r'[,.;?!、,。?!;]'
items = re.split(f'({punds})', inp) items = re.split(f'({punds})', inp)
items = ["".join(group) for group in zip(items[::2], items[1::2])] mergeitems = ["".join(group) for group in zip(items[::2], items[1::2])]
opt = "\n".join(items) # 在句子不存在符号或句尾无符号的时候保证文本完整
if len(items)%2 == 1:
mergeitems.append(items[-1])
opt = "\n".join(mergeitems)
return opt return opt

View File

@ -30,7 +30,7 @@ rep_map = {
"\n": ".", "\n": ".",
"·": ",", "·": ",",
"": ",", "": ",",
"...": "", # "...": "…",
"$": ".", "$": ".",
"/": ",", "/": ",",
"": "-", "": "-",