Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abdullah10
/
TextGen
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ac238b9
TextGen
/
remove_astricks.py
abdullah10
Upload 35 files
8bc7dc5
over 1 year ago
raw
Copy download link
history
blame
Safe
99 Bytes
import
re
def
remove_ast
(
text
):
cleaned_text = re.sub(
r'\*'
,
''
, text)
return
cleaned_text