fork download
  1. import sys
  2. import re
  3. s = ''.join(sys.stdin.readlines())
  4. s = re.sub(r'(?m)^version extraction failed.*\n?', '', s)
  5. print s
Success #stdin #stdout 0.01s 7192KB
stdin
version extraction failed blah blah blah
But this line should stay 
*remove  
* this too 
End
stdout
But this line should stay 
*remove  
* this too 
End