fork download
  1. import re
  2. s = "MMM2MMM"
  3. l = re.split('MMM(.*)MMM', s)
  4. print l
Success #stdin #stdout 0.01s 7240KB
stdin
Standard input is empty
stdout
['', '2', '']