Re: Problem with re module

2011-03-22 Thread John Harrington
On Mar 22, 12:07 pm, Benjamin Kaplan wrote: > On Tue, Mar 22, 2011 at 2:40 PM, John Harrington > > > > wrote: > > On Mar 22, 11:16 am, John Bokma wrote: > >> John Harrington writes: > >> > I'm trying to use the following substitution, >

Re: Problem with re module

2011-03-22 Thread John Harrington
On Mar 22, 11:16 am, John Bokma wrote: > John Harrington writes: > > I'm trying to use the following substitution, > > >      lineList[i]=re.sub(r'(\\begin{document})([^$])',r'\1\n\n > > \2',lineList[i]) > > > I intend this to match an

Problem with re module

2011-03-22 Thread John Harrington
I'm trying to use the following substitution, lineList[i]=re.sub(r'(\\begin{document})([^$])',r'\1\n\n \2',lineList[i]) I intend this to match any string "\begin{document}" that doesn't end in a line ending. If there's no line ending, then, I want to place two carriage returns between the s