我正在使用python-docx lib在Python中使用MS Word做一些工作。我已经复制了用于添加超链接的代码,它可以正常工作。可以添加新超链接的代码如下所示:
def add_hyperlink(paragraph, text, url):
# This gets access to the document.xml.rels file and gets a new relation id value
part = paragraph.part
r_id = part.relate_to(url, docx.opc.constants.RELATIONSHIP_TYPE.HYPERLINK, is_external=True)
# Create the w:hyperlink tag and add needed values
hyperlink = docx.oxml.shared.OxmlElement('w:hyperlink')
hyperlink.set(docx.oxml.shared.qn('r:id'), r_id, )
# Create a w:r element and a new w:rPr element
new_run = docx.oxml.shared.OxmlElement('w:r')
rPr = docx.oxml.shared.OxmlElement('w:rPr')
# Join all the xml elements together add add the required text to the w:r element
new_run.append(rPr)
new_run.text = text
hyperlink.append(new_run)
# Create a new Run object and add the hyperlink into it
r = paragraph.add_run ()
r._r.append (hyperlink)
# A workaround for the lack of a hyperlink style (doesn't go purple after using the link)
# Delete this if using a template that has the hyperlink style in it
r.font.color.theme_color = MSO_THEME_COLOR_INDEX.HYPERLINK
r.font.underline = True
return hyperlink
但是,我想要的是将现有文本替换为超链接,而不是添加新的超链接。特别是当情况进入表格单元时,情况变得更加复杂。例如,我试图将文本替换为表中的超链接,我试图清除单元格数据并添加具有相同数据的超链接。代码如下所示:
def replaceHyperlink_in_table(document, text, hyperlink):
for table in document.tables:
for row in table.rows:
for cell in row.cells:
if cell.text == text:
cell.text = ''
add_hyperlink(cell.add_paragraph(), text, hyperlink)
它可以成功地用超链接替换文本,但是,它以换行开头,这意味着,它是超链接前面的“ / n”(似乎add_paragraph总是以换行开头...表单元格本身有一个默认的空字符串,无法删除...),我不知道如何删除它。 python-docx似乎对表格单元没有太多操作。
所以我只是想从一开始就以错误的方式进行操作,还是有一种方法可以直接将文本更改为超链接而不影响其样式?
谢谢 干杯