I am having a hard time finding a regular expression to find specific parts of some html code. A code snippet can be seen below.
<td valign="top">23.01.2019</td>
<td valign="top">DOE/ELT</td>
<td valign="top">Laser Projection Subunits for the Extremely Large Telescope</td>
I am trying to find the last part with the "Laser Projection". This is the closest i have been able to come to this result.
<td valign=\"top\">[^[0-9]{2}.[0-9]{2}.[0-9]{4}]|[^[A-Z]{3}]|[A-Z a-z]*</td>