I want to write a simple regular expression in Python that extracts a number from HTML. The HTML sample is as follows:
Your number is 123
The simplest way is just extract digit(number)
re.search(r"\d+",text)