I am trying to extract chapters/sections for txt files whose were generated using pdftotext on portuguese Lawsuits documents. Initially I tried this regex to, at least, get each chapter title:
^[A-Z\s\d\W]+$
Apparently it had worked for this example: https://regex101.com/r/FQKsy4/1
But, for this one: https://regex101.com/r/BEO55p/3
I got some non titles like those matches:
So, how can I get not only each chapter/section title but each content of them too?
I tried a regex to get each chapter and its content but not worked very well in some documents
An approach using 2 capture groups:
^[^\S\n]*([A-Z][^a-z]*)((?:\n(?![^\S\n]*[A-Z][^a-z\n]*$).*)*)$
^
Start of string[^\S\n]*
Match optional spaces without newlines(
Capture group 1
[A-Z][^a-z]*
Match a single uppercase char followed by any char except a lowercase a-z)
Close group(
Capture group 2
(?:\n(?![^\S\n]*[A-Z][^a-z\n]*$).*)*
Optionally repeat matching all lines that do not start with a title like pattern)
Close group$
End of stringA bit more pcre like approach:
^\h*([A-Z][^a-z]*)((?>\R(?!\h*[A-Z][^a-z\r\n]*$).*)*)$