Simple Python function to extract all the numbers from given text or string Get link Facebook X Pinterest Email Other Apps - March 06, 2024 def getNumberFromRawText(text, serial = 0): from re import findall numbers = findall(r'\d+', text) return numbers[serial] Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment