fork download
  1. import re
  2. print(re.findall(r'[0-9]*[.,]?[0-9]+', 'Half Price Was £1.75 Now 87p'))
Success #stdin #stdout 0.01s 23352KB
stdin
Standard input is empty
stdout
['1.75', '87']