标签: python machine-learning
如何将粗体字体样式添加到PDF中的特定字符串。我试图使用TIKA读取PDF。现在,我必须搜索特定的字符串并将其显示为粗体字符串。如何在python中完成?
ot = welcome to python programming regex=r"python" print(ot.replace(regex,"<b>"+regex+"</b>"))
由于我使用TIKA阅读了pdf文件,因此匹配的单词会以粗体标签显示。