1. Removing quotes and nested quotes: ^ {4}(\w+ wrote:(?:\n+(?: {4,}.*))*) This will match quotes likes this one: ``` user1 wrote: user2 wrote: I use Lens X on Camera Y. It's a super good combo. I have bought the lens station on Amazon. Upgraded to latest firmware and I have full ibis now. I just got my 85mm and it does not work well on my Camera W. As others have noted, IBIS and BB+ shooting does not work. Anyone else have issues with continuous AF? Update: I received the lens station today. ``` "Update ..." string will not be part of a match. 2. Removing "user's gear list" part: (?P[\w']+)\'s gear list:\n((?P[^\n]+)\n)*?\w+ • \w+ Member • Posts: \d+(?=\n|$) This will match sections like this one: ``` user5's gear list: Camera 1 Camera 2 Camera 3 Lens 1 Lens 2 Lens 3 Useless expensive thing 100 +4 more someword • Regular Member • Posts: 317 ```