I am trying to get something between 2 strings in HTML email source code i am using c#. The part of html is:
<td width="200" align="right" valign="top" style="line-height:22px; font-size:20px; font-family: Arial, sans-serif; color:#636363; text-decoration:none;">
9/7/2018
</td>
i need the date 9/7/2018.i have tried the regex,
color:#636363; text-decoration:none;">(.*?)</td>
This should Capture string between color:#636363; text-decoration:none;">
and </td>
. but its not working. i think newline and blank characters are causing problems.