将 .rtf 文件转换为字符串输出 - 如何从字符串输出中删除 /par?
Convert .rtf file to sting output - how to remove /par from string output?
with open('myfile.rtf', 'r') as file:
text = file.read()
print(text)
我试过这段代码,但它有问题,在 .rtf
文件。有人可以帮我从字符串输出中删除 '\par'
吗?
with open('myfile.rtf', 'r') as file:
text = file.read()
from striprtf.striprtf import rtf_to_text
rtf = text
text1 = rtf_to_text(rtf)
print(text1)
在终端中,请在执行上述代码之前使用此代码pip install striprtf
使用此代码,您还可以获取扩展名为 .rtf
的文件并生成 str
输出
with open('myfile.rtf', 'r') as file:
text = file.read()
print(text)
我试过这段代码,但它有问题,在 .rtf
文件。有人可以帮我从字符串输出中删除 '\par'
吗?
with open('myfile.rtf', 'r') as file:
text = file.read()
from striprtf.striprtf import rtf_to_text
rtf = text
text1 = rtf_to_text(rtf)
print(text1)
在终端中,请在执行上述代码之前使用此代码pip install striprtf
使用此代码,您还可以获取扩展名为 .rtf
的文件并生成 str
输出