Let's say I have the HTML string:
HTML Code:
<html>
<head>
</head>
<body>
<table>
<tr>
<td>Money: </td>
<td>${VARIABLE1}</td>
<td>${VARIABLE2}</td>
<td>${VARIABLE3}</td>
<td>${VARIABLE4}</td>
</tr>
</table>
</body>
</html>
So I need to get from that string, a string that has:
"Variable1: {VARIABLE1}
Variable2: {VARIABLE2}
Variable3: {VARIABLE3}
Variable4: {VARIABLE4}"
Thanks,
Dan