In BeautifulSoup, if I want to find all div's where whose class is span3, I'd just do:
result = soup.findAll("div",{"class":"span3"})
However, in my case, I want to find all div's whose class starts with span3, therefore, BeautifulSoup should find:
<div id="span3 span49">
<div id="span3 span39">
And so on...
How do I achieve what I want? I am familiar with regular expressions; however I do not know how to implement them to beautiful soup nor did I find any help by going through BeautifulSoup's documentation.