Regex match text between paragraph tags
问题 I'm attempting to match only the content between opening/closing paragraph tags. Playing around with it on RegExr, I can get <p.*?> to match an opening paragraph tag that may or may not have any additional attributes such as class and/or ID. However, when I attempt to add that pattern to a positive look behind, it breaks and I'm not sure why. I've tried escaping the < and > symbols, but that doesn't seem to help. The look ahead, however, works perfectly. Here's an example of the entire