gpt4 book ai didi

python - Notepad++ 的 Python 脚本中的可选参数

转载 作者:行者123 更新时间:2023-11-28 22:43:07 25 4
gpt4 key购买 nike

我正在尝试自动删除我在 Notepad++ 上编辑的 HTML 代码中的一些文本。我发现插件“Python Script”是个不错的选择。

在我看来,我应该按如下方式使用 Editor.rereplace:

Editor.rereplace(search, replace[, flags[, startPosition[, endPosition[, maxCount]]]]) 

唯一的问题是我想使用可选参数“maxCount”而不是“flags”、“startposition”和“endposition”

我试过这样编码:

Editor.rereplace("old", "new", maxCount=1)

这行不通,我猜是因为它不是真正的 Python,而是 Scintilla 语言。所以我查看了 Scintilla 文档,在我看来,Scintilla 中“自然”不存在可选参数。

最佳答案

语法定义为 [opt1 [opt2 [opt3]]] 而不是 [opt1] [opt2] [opt3] 这意味着你不能使用 opt3 也指定 opt1 和 2。为什么不只提供适合您的标志、开始和结束位置的值?

我会尝试:

Editor.rereplace("matchRegex", "replaceWith",0,0,1,1)

地点:

Flags: 0
Start: 0
End: 1
MaxCount: 1

关于python - Notepad++ 的 Python 脚本中的可选参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31076814/

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