replace enter in python code example
Example 1: replace character in string python
>>> x = 'xpple bxnxnx cherry'
>>> a = x.replace(x,a) # replaces x with a
'apple banana cherry'
>>> first_a = x.replace(x,a,1) # only replaces first a
'apple bxnxnx cherry'
Example 2: python replace newline
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)