uto1125's picture
Upload 136 files
75963c5 verified
raw
history blame
556 Bytes
import re
SYMBOLS_MAPPING = {
"β€œ": "'",
"”": "'",
"β€˜": "'",
"’": "'",
"【": "",
"】": "",
"[": "",
"]": "",
"(": "",
"οΌ‰": "",
"(": "",
")": "",
"・": "Β·",
}
REPLACE_SYMBOL_REGEX = re.compile(
"|".join(re.escape(p) for p in SYMBOLS_MAPPING.keys())
)
def clean_text(text):
# Clean the text
text = text.strip()
# Replace all chinese symbols with their english counterparts
text = REPLACE_SYMBOL_REGEX.sub(lambda x: SYMBOLS_MAPPING[x.group()], text)
return text