Following up on this answer How to keep only a certain set of rows by index in a pandas DataFrame I need to extend it a bit:
E. g. I only want to keep rows where it's index follows a rule. In my case '01' through '99'. do I have to write a series from 01 to 99 to filter the rows?
Or would be some kind of regex OK? gooddf.loc['[0-9]']