Regex is not being very friendly with me, giving me 0 matches haha.
Basically, I have a big string, that includes this:
<td class="fieldLabel02Std">FIELD_LABEL</td>
<td class="fieldLabel02Std">
VALUE
</td>
Thanks to the FIELD_LABEL I should be able to find it inside the bigger string. The "VALUE" is what I want to get.
I tried this pattern
String field = "FIELD_NAME";
String pattern = field + @"[\s\S]*?\<td[\s\S]*?\<\/td\>";
That didn't work. I was thinking about this: Get the field_name + some characters + => which would be able to give me VALUE.
This gives me 0 matches.
Help is very appreciated!