I'm using the following regular expression in a web scraping program. It's scraping the html for a bulleted list but it's only grabbing the first bullet and leaving the other 9 behind.
How could I modify it to grab all 10 bullets?
<li>\s*<span\s+class=\"a-list-item\">(.*?)<\/span>\s*<\/li>
Thank you for any help.