I have the following string and i would like to extract the value of the field
<td class="label" width="150"">State</td><td width="" class="field">Approved </td>
in this case it should be Approved
Also sometime the input can be like this
<td class="label" width="150"">Type</td><td width="" class="field">Technical Document </td>
which shd result in Technical Document
Sometimes it can be
<td class="label" width="150"">Title</td><td width="" class="field">Reversal Plate</td>
In this case it will be Reversal Plate
How can we write a regular expression for such string.