fork download
  1. import re
  2. text = "ZZZ。10月,AAA。11月2日,BBB。CCC。3日,DDD。EEE。12月,FFF"
  3. print( re.split(r'(?<=。)(?=\s*\d{1,2}[日月])', text) )
Success #stdin #stdout 0.03s 9776KB
stdin
Standard input is empty
stdout
['ZZZ。', '10月,AAA。', '11月2日,BBB。CCC。', '3日,DDD。EEE。', '12月,FFF']