<tr><th>Biography</th>
<td> A bunch of random info here <td>
I am trying to get all content after the biography line and the opening tag of the next line. If the new line character not in brackets: (?<=Biography\n).{1,50} or if it is: (?<=Biography[\n]).{1,50} I am not sure which would get all characters starting at the next line. But They both are returning nothing. What is the correct way to read the newline character in a string of HTML data?