Re: help with looping, re.search, multiple indexing

2007-02-16 Thread Peter Otten
Lance Hoffmeyer wrote: > How do I add another index inside a re.search? > > I want to add > for j in [96,97,98,99] > BASE = re.search ... > sh.Cells97... > for i > > so that the Table 96 within the re.search(s) becomes Table 96, Table 97, > Table 98, Table 99 but don't know how

help with looping, re.search, multiple indexing

2007-02-16 Thread Lance Hoffmeyer
Hey all, How do I add another index inside a re.search? I want to add for j in [96,97,98,99] BASE = re.search ... sh.Cells97... for i so that the Table 96 within the re.search(s) becomes Table 96, Table 97, Table 98, Table 99 but don't know how to add a second index within the