“Python substitua a nova linha” Respostas de código

Python substitua a nova linha

without_line_breaks = a_string.replace("\n", " ")
Behnam263

Python substitua a nova linha

from tika import parser

filename = 'myfile.pdf'

# Parse the PDF
parsedPDF = parser.from_file(filename)

# Extract the text content from the parsed PDF
pdf = parsedPDF["content"]

# Convert double newlines into single newlines
pdf = pdf.replace('\n\n', '\n')

#####################################
# Do something with the PDF
#####################################
print (pdf)
Behnam263

Respostas semelhantes a “Python substitua a nova linha”

Perguntas semelhantes a “Python substitua a nova linha”

Mais respostas relacionadas para “Python substitua a nova linha” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código