Hello,
I'm new to PAD and Regex, and I tried extracting text from a pdf then parsing it so I can get a text of:
Article X Section Y
I used the regex (?i)article\s?\n?\s\d\d?\s?\n?((?i)section\s?\n?\d\d?)? just in case the full text is separated with a line in the pdf, also in case the X and Y contains more than one digit.
The problem is, it seems that the text extracted is separated with a line, so it looks like this:
Article
X Section Y
I tried replacing the regex \n in the extracted text with %""% to delete the new line but it doesn't seem to work.
Can anyone help?
Thanks in advance.