代码之家  ›  专栏  ›  技术社区  ›  Bijan

Python docx复制表

  •  1
  • Bijan  · 技术社区  · 7 年前

    我有以下代码,用于保存表、修改表,然后复制表。我得到了 copy_table_after() 从…起 Here .

    def copy_table_after(table, paragraph):
        tbl, p = table._tbl, paragraph._p
        new_tbl = deepcopy(tbl)
        p.addnext(new_tbl)
    
    def replaceText(document, search, replace):
        for table in document.tables:
            for row in table.rows:
                for paragraph in row.cells:
                    if search in paragraph.text:
                        paragraph.text = replace
    
    document = Document('Test.docx')
    template = document.tables[0]
    replaceText(document, '<<VALUE_TO_FIND>>', 'New value')
    paragraph = document.add_paragraph()
    copy_table_after(template, paragraph)
    

    我的问题是当我跑步的时候 copy_table_after ,它将用新文本复制表格。是否有一种方法可以“保存”表格,然后在我已经对其进行了更改后复制原始表格?

    1 回复  |  直到 7 年前
        1
  •  4
  •   edi9999    7 年前

    是的,应该可以这样:

    (请注意,我已删除copy\u table\u after,因为我们只想复制表)

    def replaceText(document, search, replace):
        for table in document.tables:
            for row in table.rows:
                for paragraph in row.cells:
                    if search in paragraph.text:
                        paragraph.text = replace
    
    document = Document('Test.docx')
    template = document.tables[0]
    tbl = template._tbl
     # Here we do the copy of the table
    new_tbl = deepcopy(tbl)
    # Then we do the replacement
    replaceText(document, '<<VALUE_TO_FIND>>', 'New value')
    paragraph = document.add_paragraph()
    # After that, we add the previously copied table
    paragraph._p.addnext(new_tbl)