On Feb 7, 10:43 am, Nikola Skoric <n...@fly.srk.fer.hr> wrote: > Hello everybody, > > I'd like to split a file by double newlines, but portably. Now, > splitting by one or more newlines is relatively easy: > > self.tables = re.split("[\r\n]+", bulk) > > But, how can I split on double newlines? I tried several approaches, > but none worked...
self.tables = re.split(r'(?:\r\n){2,}|\r{2,}|\n{2,}', bulk) -- http://mail.python.org/mailman/listinfo/python-list