Spaces:
Build error
Build error
import re | |
def clean_text(text: str) -> str: | |
text = re.sub(r"[^\w\s.,!?]", " ", text) | |
text = re.sub(r"\s+", " ", text) | |
return text.strip() | |