Hi,
I'm trying to extract text using pattern matching. Using the below text as an example, I'm trying to return the content of whole lines above the "IND No." line (in the actual use case, a PDF file has individual lines fixed above "IND No." that must be captured).
Line 1
Line 2
Line 3
Line 4
Line 5
Line 6
IND No.
Line 7
Line 8
Line 9
The following Regex validates correctly using an online checker, but doesn't match anything in Workflow/Quick Fields. In this instance I would hope that it would return "Line 1".
([0-z ]{1,})\n[0-z ]{1,}\n[0-z ]{1,}\n[0-z ]{1,}\n[0-z ]{1,}\n[0-z ]{1,}\nIND No.