Dear all
From the little I know about Python, I can create a code, using the "fitz", "os" and "re" libraries to open PDF and find data within it, split PDF, save files.
Something simple but effective where I can find fields and extract data.
Example of a Python function that searches for data from PDF:
I commented the lines to make it easier to understand.
Can I do something similar in B4J?
If so, where do I start?
From the little I know about Python, I can create a code, using the "fitz", "os" and "re" libraries to open PDF and find data within it, split PDF, save files.
Something simple but effective where I can find fields and extract data.
Example of a Python function that searches for data from PDF:
I commented the lines to make it easier to understand.
Extrair_Nome:
def extrair_nome(texto):
#"""Busca o nome da pessoa no texto da página"""
linhas = texto.split("\n") # Quebra o texto por linhas
for i, linha in enumerate(linhas):
if "Nome Completo" in linha: # Encontrou o campo "Nome Completo"
if i + 1 < len(linhas): # Verifica se há uma linha abaixo
cpf = linhas[i + 1].strip() # Captura o nome abaixo
nome = linhas[i + 2].strip() # Captura o nome abaixo
nome = re.sub(r'[<>:"/\\|?*]', '_', cpf + '_' + nome) # Remove caracteres inválidos no nome do arquivo
return nome
return None # Retorna None se não encontrar o nome
Can I do something similar in B4J?
If so, where do I start?