ms word-2003搜索和替换文本

时间:2014-03-28 05:04:20

标签: python ms-word

如何使用python查找和替换ms word 2003中的文本? 我想在表格和段落中搜索一个单词。

谢谢!

http://msdn.microsoft.com/en-us/library/f1f367bx.aspx?cs-save-lang=1&cs-lang=vb#code-snippet-9

如何在Python中实现它?

2 个答案:

答案 0 :(得分:0)

我认为您可以参考此链接How to read contents of an Table in MS-Word file Using Python?

您可以使用特定的行和列访问表格内容。

答案 1 :(得分:0)

def fetchpnum(self,searchable):
        # print self.doc1.Paragraphs.Count
        for i in range(1, self.doc1.Paragraphs.Count):
            value = self.doc1.Paragraphs(i).Range.Text.lower()
            if value.startswith(searchable.lower()):
                return i
        return 0