I'm filtering and cleaning some data such as this one(東急オリジナルお礼品(18)).
I tried the following to filter out the digits and the parenthesis.
Case 1 categoryData = re.sub(r"\(.*?\)", "", category_element.find("span").get_text())
Case 2 categoryData = re.sub(r"/\([0-9]+\)/", "", category_element.find("span").get_text())
Still it is not working
My goal is tho have this data only(東急オリジナルお礼品)