On Nov 30, 5:24 pm, MRAB wrote:
> Jeremy wrote:
> > I am using re.split to... well, split a string into sections. I want
> > to split when, following a new line, there are 4 or fewer spaces. The
> > pattern I use is:
>
> > sections = re.split('\n\s{,4}[^\s]', lineoftext)
>
> > This split
Jeremy wrote:
I am using re.split to... well, split a string into sections. I want
to split when, following a new line, there are 4 or fewer spaces. The
pattern I use is:
sections = re.split('\n\s{,4}[^\s]', lineoftext)
This splits appropriately but I lose the character matched by [^s