从文件

时间:2018-06-16 16:13:11

标签: python regex python-3.x python-2.7

2个参数file_infile_out,我需要多次将('a\n\n\n\na')转换为('a\n\na')。我试过re.sub(r'[\r\n][\r\n]{2,}', '\n\n', file_out)但没有任何作品任何人都有想法?

         --------------------
          aaa


          bbb




          ccc
          --------------------

    needed to be converted to

          --------------------
          aaa

          bbb

          ccc
          --------------------

0 个答案:

没有答案