Re: Re: how to get all repeated group with regular expression

2008-11-22 Thread Jeremiah Dodds
On Fri, Nov 21, 2008 at 9:12 PM, scsoce <[EMAIL PROTECTED]> wrote: > MRAB wrote: > >> Steve Holden >> wrote: >> >>> Please keep this on the list. >>> >>> scsoce wrote: >>> Steve Holden wrote: > scsoce wrote: > > >> say, when I try to search and match every char from vari

Re: Re: how to get all repeated group with regular expression

2008-11-21 Thread scsoce
MRAB wrote: Steve Holden wrote: Please keep this on the list. scsoce wrote: Steve Holden wrote: scsoce wrote: say, when I try to search and match every char from variable length string, such as string '123456', i tried re.findall( r'(\d)*, '12346' ) I think you will find you misse