in reply to Re^2: A line of code matches the question
in thread A line of code matches the question

You should NOT USE REGULAR EXPRESSIONS to parse HTML. Just don't do it. If you have a good-enough solution that uses two regular expressions, you should NOT try to combine it into one regular expression. Regexes are bad at parsing structured data like HTML, and rapidly become incomprehensible and unmaintainable when you try.
  • Comment on Re^3: A line of code matches the question

Replies are listed 'Best First'.
Re^4: A line of code matches the question
by *2 (Novice) on Aug 10, 2017 at 16:48 UTC
    I am also a headache for those very long expressions, if you can, then I also like to change the problem simple. Thank you for your suggestion!