I'm beginning to develop in Objective-C, and I'm have a problem finding the correct regular expression to list the anchor in an HTML document.
Example: I have this HTML code:
<ul>
<li><a class="class1" href="/document1.html"></li>
<li><a class="class1" href="/document2.html"></li>
<li><a class="class1" href="/document3.html"></li>
</ul>
I want get a NSArray with a result like this:
/document1.html
/document2.html
/document3.html
How can I make a good regular expression for this?