I am trying to extract links from HTML. I am using the following regular expression
href=\"([^\"]*)\"
Which is extracting unnecessary links. How can I write a regular expression to extract only links with class=”l” like
<a href="http://users.elite.net/runner/jennifers/hello.htm" class="l">
<a href="http://www.hellodesign.com/" class="l">
<a href="http://www.ipl.org/div/hello/" class="l">
Parsing HTML with regex is unnecessarily overcomplicated. Regex is the wrong tool for the job. Just use a normal HTML parser like Jsoup. It allows you to select HTML elements by normal CSS selectors.