gpt4 book ai didi

LibreOffice 的 Python 宏 - 替换文本中的字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:49:21 26 4
gpt4 key购买 nike

我一直在寻找一些用户友好的教程,但没有找到。

我想用 Python 为 LibreOffice 编写一个宏,它将替换 Writer 中当前打开的文档中的字符串。令人惊讶的是,似乎没有来自开发人员或用户的任何官方指南、文档甚至示例。

我需要知道的是,我如何在 Python 中访问当前打开的文档的文本并更改它?工作示例会很棒,但非常感谢任何帮助。

最佳答案

一个简单的“Hello World”示例如下:

def hello():
XSCRIPTCONTEXT.getDocument().getText().setString("Hello!")

# Functions that can be called from Tools -> Macros -> Run Macro.
g_exportedScripts = hello,

参见 https://wiki.openoffice.org/wiki/Python/Transfer_from_Basic_to_Python .

如何搜索和替换文本取决于您的要求。替换一次还是全部?替换为普通文本,还是也替换为表格、框架或标题等元素?区分大小写,或者可能是正则表达式?请参阅 Andrew Pitonyak's macro document 中的第 7.14 节以 Basic 中的示例为例。

这是一个 Python 中的工作示例,它将所有出现的“search for”更改为“change to”:

document = XSCRIPTCONTEXT.getDocument()
search = document.createSearchDescriptor()
search.SearchString = "search for"
search.SearchAll = True
search.SearchWords = True
search.SearchCaseSensitive = False
selsFound = document.findAll(search)
if selsFound.getCount() == 0:
return
for selIndex in range(0, selsFound.getCount()):
selFound = selsFound.getByIndex(selIndex)
selFound.setString("change to")

关于LibreOffice 的 Python 宏 - 替换文本中的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36626736/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com