I have this string:
rder=3D"0" width=3D"650">=0D=0A <tr>=0D=0A <td valign=3D"top">=0D=0A <p>=0D=0A <strong>Hi Mike Tyson</strong>,<br/>=0D=0A =
I want to extract Mike Tyson
from the string. Everything but the name is always the same in the above string, so my first clue would be to just use this regex:
[^rder=3D"0" width=3D"650">=0D=0A <tr>=0D=0A <td valign=3D"top">=0D=0A <p>=0D=0A <strong>Hi ].*[^<\/strong>,<br\/>=0D=0A =]
However, this outputs Mike Ty
instead of Mike Tyson
. Any ideas?