I'm trying to figure out the regex for the following:
String</td><td>[number 0-100]%</td><td>[number 0-100]%</td><td>String</td><td>String</td>
Also, some of these td tags may have style attributes at some point. I tried this:
String<.*>
and that returned
String</td>
but trying
String<.*><.*>
returned nothing. Why is this?