Chatbot / app /utils.py
ShadowTEM's picture
uploaded the rest
8422173 verified
Raw
History Blame Contribute Delete
303 Bytes
import re
def remove_stars(text):
"""
Removes all '*' characters (including sequences of them) from the input string.
Parameters:
text (str): The input string.
Returns:
str: The string without any '*' characters.
"""
return re.sub(r'\*+', '', text)