Regex Select Within a Multi-paragraph DIV

Is there a way to select all paragraphs within a DIV excluding the first 14 lines or the first paragraph?

That won't be possible at the moment because regex in JavaScript doesn't support negative lookbehinds.

The solution right now is to extract the data as is and then parse it in a post processing phase.