It there a good way to check the number of existing table in the database that matches a particular format?
For example, I am looking for any table names that starts with 'rangtable', such as 'rangtable1', 'rangtable2', 'rangtable3'....etc, in this case, it returns three. 
I am not sure if there is a query or term I need to search for in the SQL realm. Best I came up with is to do a full table query and then do a fetchall (I am using Python with PostgreSQL) than try to do some regex matching with the result.
 
    