I\'m using BeautifulSoup. I have to find any reference to the tags with id like: post-#. For example:
tags with id like: post-#. For example:
post-#
For example:
soupHandler.findAll('div', id=re.compile("^post-$"))
looks right to me.