http://*.com/questions/15325182/how-to-filter-rows-in-pandas-by-regex
dbstk.loc[dbstk.STKCODE.str.startswith('6'),:]
dbstk.loc[dbstk.STKCODE.str.contains(^[0,3,6]\d{5}$)]
http://*.com/questions/15325182/how-to-filter-rows-in-pandas-by-regex
dbstk.loc[dbstk.STKCODE.str.startswith('6'),:]
dbstk.loc[dbstk.STKCODE.str.contains(^[0,3,6]\d{5}$)]