TextGen / remove_astricks.py
abdullah10's picture
Upload 35 files
8bc7dc5
raw
history blame contribute delete
99 Bytes
import re
def remove_ast(text):
cleaned_text = re.sub(r'\*', '', text)
return cleaned_text