fork(1) download
  1.  
  2. input_text = 'This is a test number +223/34 and this a real number 2333.'
  3. print( " ".join([word for word in input_text.split() if word.isalnum()]) )
Success #stdin #stdout 0.02s 9108KB
stdin
Standard input is empty
stdout
This is a test number and this a real number