How would I write a RegEx to:
Find a match where the first instance of a > character is before the first instance of a < character.
(I am looking for bad HTML where the closing > initially in a line has no opening <.)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if you need the corresponding
<as well,If there is a possibility of tags before the first
>,Note that it can give false positives, e.g.
is a valid HTML, but the RegEx will complain.