Hi,
I am trying to find write a Reqex query to return all characters between
and
I've written the following line, which gives a runtime exception:
The intent is "take everything between these two bits of HTML and store it in a group called 'data'". However, I get the following exception:
Argument Exception: parsing "<td class="CelluleClairBleuCenter" align="center">(?<data>*)</tr>" - Quantifier {x,y} following nothing.
I have tried excaping the * which stops the error but does not find any matches.
Would be very grateful for any help.
Thanks,
Graeme
"Just beacuse you're paranoid, don't mean they're not after you
I am trying to find write a Reqex query to return all characters between
Code:
<td class="CelluleClairBleuCenter" align="center">
and
Code:
</tr>
I've written the following line, which gives a runtime exception:
Code:
Regex regex = new Regex("<td class=\"CelluleClairBleuCenter\" align=\"center\">(?<data>*)</tr>");
The intent is "take everything between these two bits of HTML and store it in a group called 'data'". However, I get the following exception:
Argument Exception: parsing "<td class="CelluleClairBleuCenter" align="center">(?<data>*)</tr>" - Quantifier {x,y} following nothing.
I have tried excaping the * which stops the error but does not find any matches.
Would be very grateful for any help.
Thanks,
Graeme
"Just beacuse you're paranoid, don't mean they're not after you