Hello, I am trying to take some HTML and remove all the HTML elements and only leave the plain text. Basically I am trying to extract information that was put into an HTML table. I have a regular expression which catches the HTML elements, it is <.?> but I actually want the inverse of this, that regular expression returns the HTML elements to me, I want the plain text. I tried doing [<.?>]+ but square brackets will only work with 1 character at a time, so it is not seeing <.*?> as a whole.