1
I have the OCR below and would like to get the result in regular expression.
Of: 1505 - ADMINISTRACAO DOS PENSIONISTAS DO IPREV
, above the word CPF.
I thought of using the CPF as a parameter, because always this result is above the CPF.
ESTADO DE SANTA CATARINA Contra-cheque individual Administracao dos Pensionistas do IPREV 1505 - ADMINISTRACAO DOS PENSIONISTAS DO IPREV CPF: 000.000.000-00 Matrícula: 0000000000 Inscrição: 00000000
I did the regex:
\r*?([A-Za-z0-9\s]{1,}\s)CPF
But you’re only taking the name, you didn’t get the -1505
.