Contact: aviboots(AT)netvision.net.il
41,857 questions
54,547 answers
573 users
import re s = 'python 24 java98 c++ 88397 php 3.14 swift 6-89' lst = re.findall('[0-9.]+', s) for n in list(lst): print(n) ''' run: 24 98 88397 3.14 6 89 '''