remove_tag

remove_tag(string)

Most of web scrapped data contains html tags. It can be removed from below re script

Parameters

text: str Text selected to apply transformation.

Examples:

sentence="Markdown sentences can use <br> for breaks and <i></i> for italics"
remove_tag(sentence)
    >>> 'Markdown sentences can use  for breaks and  for italics'