查找/替换但增加值

Posted

技术标签:

【中文标题】查找/替换但增加值【英文标题】:Find/Replace but Increment Value 【发布时间】:2010-11-09 11:44:35 【问题描述】:

我有一个 .html 文件,其中附加了许多照片,用于显示照片库。我正在用新照片替换旧照片,并且我认为必须有一种比简单地复制和粘贴重复文件名更智能的方法。

我希望能够在每次替换时替换和增加一个文件名,从我选择的基本文件名开始。比如……

...images/69thStreet010.jpg
...images/69thStreet011.jpg
...images/69thStreet012.jpg

基本上执行 CTRL+F 并将“69thStreet010.jpg”替换为...

...images/xyz001.jpg
...images/xyz002.jpg
...images/xyz003.jpg

等等,直到我想要它停止。这里有人有什么建议吗?非常感谢!

更新:我还应该补充一点,我正在使用 Notepad++ 来编辑我的文件。

【问题讨论】:

【参考方案1】:

查看 Notepad++ 中的 Column Editor 功能。您可以在要增加的区域上进行块选择,然后为其指定开始/结束范围,一切就绪。

我最近也遇到了类似的情况。我做了一些正则表达式搜索/替换,以使我的文件名变成我的“默认”格式,并在我希望开始递增的地方添加一些填充的“000”。之后,我使用 Shift+ALT 来阻止选择 000,然后使用编辑器完成剩下的工作。

【讨论】:

+1 适用于大多数情况的简单有效的解决方案 您只需为我节省 15 分钟。祝福你! :)【参考方案2】:

好的,我想出了一个 Notepad++ 解决方案。 它确实需要您安装 Notepad++ 插件 PythonScript。 这是一个类似于 TextPad 的增量替换。

即 在字符串中搜索和替换整数值 从 1 开始递增替换(0 是默认起始值​​):

在你的情况下,它会是 搜索: ...images/69thStreet[0-9]+.jpg 替换:...images/xyz00\i(1).jpg

安装 PythonScript 插件。 将下面的代码另存为 PythonScript,并为其关联一个快捷方式(即 Ctrl+i): 然后在 Notepad++ 中打开您的 html 文件并在您的 html 文件上运行以下脚本。 当搜索替换对话框提示时,输入以下 2 行: ...images/69thStreet[0-9]+.jpg ...图像/xyz00\i(1).jpg

现在,的所有实例 ...images/69thStreet010.jpg ...images/69thStreet011.jpg ...images/69thStreet012.jpg

会变成 ...图像/xyz001.jpg ...图像/xyz002.jpg ...图像/xyz003.jpg

这里是 PythonScript 代码

from Npp import *
import re, string

# First we'll start an undo action, then Ctrl-Z will undo the actions of the whole script
editor.beginUndoAction()

expression     = notepad.prompt("Enter the search string on the first line, followed by Ctrl+Enter, \n" +
                                "followed by the replace string on second line",
                                "Incremental Search/Replace" ,
                                "")

expressionList = re.split(r"[\n\r]+", expression)

if len(expressionList) == 2:
    foundCount = [0]

    def incrementalReplace(parmReplaceStr,parmFoundCount):
        varPatternI  = r'\\i\((?P<starting>[0-9]+)\)'
        varPatternIi = r'\\i'
        varPatternISearch = re.search(varPatternI , parmReplaceStr)

        if varPatternISearch != None:
            varFoundCount    = int(varPatternISearch.group('starting')) + parmFoundCount[0]
            varReplaceString = re.sub(varPatternI ,str(varFoundCount    ),parmReplaceStr)
        elif re.search(varPatternIi, parmReplaceStr) != None:
            varReplaceString = re.sub(varPatternIi,str(parmFoundCount[0]),parmReplaceStr)

        parmFoundCount[0] = parmFoundCount[0] + 1    
        return varReplaceString

    # Do a Python regular expression replace
    editor.searchAnchor()
    while editor.searchNext(0x00200000,expressionList[0]) != -1:
        editor.replaceSel(incrementalReplace(expressionList[1],foundCount))
        editor.lineDown() 
        editor.searchAnchor()

    # End the undo action, so Ctrl-Z will undo the above two actions
    editor.endUndoAction()

【讨论】:

根据我对 Python 的记忆,不应该将最后一个 'editor.endUndoAction()' 缩进以匹配 startUndoAction 缩进级别吗? 必须用新安装的 python 替换包含的 python27.dll 以避免崩溃。【参考方案3】:

如果您的 S&R 支持 Regex,请使用它。 搜索词:

images/69thStreet([0-9]+).jpg

替换词条:

images/xyz$1.jpg

【讨论】:

他改变了他的编号开始。我不知道有哪些编辑器允许您应用算术表达式来匹配结果。 Dykam,这真的很有帮助。太感谢了! -K.R. 如果这是您需要的解决方案,我可以帮助您。【参考方案4】:

我只使用 Excel 和 Notepad++

在 Excel 中创建一列递增数字。然后在下一个(或上一个)列中,输入您希望与递增数字合并的行。例如:

file00  |  1  |  .jpg
file00  |  2  |  .jpg

等等。

然后将内容复制/粘贴到 Notepad++ 中(如果工作简单,则使用 E​​xcel 的 CONCATENATE 函数)并进行替换。

【讨论】:

【参考方案5】:

是时候学习脚本语言了。 Python/Ruby/Perl 可以通过使用简单的正则表达式和目录列表在几行代码中完成。

【讨论】:

【参考方案6】:

notepad++ 允许您进行多行编辑。但是这里的主要问题是尽可能快地从它们所在的目录中获取所有文件名。

在过去,我遇到过类似的挑战,我是通过这种方式解决的。 这几乎适用于所有获胜版本。

要列出目录中的所有文件,请在目录本身中创建一个 bat 文件。

复制并粘贴以下批处理代码

dir /b > filelist.txt

用名字保存文件

makefilelist.bat

你给它的名字并不重要:重要的是文件扩展名.bat

双击刚刚保存的bat文件:批处理脚本在目录中执行一个干净的dir命令,它执行将输出重定向到文件filelist.txt

在不到一秒的时间内,您将输出保存到 filelist.txt 女巫将类似于以下内容:

filelist.txt
Image File Name 01.gif
Image File Name 02.gif
Image File Name 03.gif
Image File Name 04.gif
Image File Name 05.gif
Image File Name 06.gif
Image File Name 07.gif
Image File Name 08.gif
Image File Name 09.gif
Image File Name 10.gif
Image File Name 11.gif
Image File Name 12.gif
Image File Name 13.gif
Image File Name 14.gif
Image File Name 15.gif
Image File Name 16.gif
Image File Name 17.jpg
Image File Name 18.jpg
Image File Name 19.jpg
Image File Name 20.jpg
Image File Name 21.jpg
Image File Name 22.jpg
Image File Name 23.jpg
Image File Name 24.jpg
Image File Name 25.jpg
Image File Name 26.jpg
Image File Name 27.jpg
Image File Name 28.jpg
Image File Name 29.jpg
Image File Name 30.jpg
Image File Name 31.jpg
Image File Name 32.jpg
Image File Name 33.PNG
Image File Name 34.PNG
Image File Name 35.PNG
Image File Name 36.PNG
Image File Name 37.PNG
Image File Name 38.PNG
Image File Name 39.PNG
Image File Name 40.PNG
Image File Name 41.PNG
Image File Name 42.PNG
Image File Name 43.PNG
Image File Name 44.PNG
Image File Name 45.PNG
Image File Name 46.PNG
Image File Name 47.PNG
Image File Name 48.PNG
makelist.bat

当然,记录到文件列表中的名称可能会有所不同...脚本记录每个文件,无论它是否按顺序或名称是随机名称还是包含日期时间(时间戳)等。 :它将所有内容都记录到执行女巫的同一目录中...

现在您可以使用 notepad++ 打开 filelist.txt:首先删除列表中报告不需要的文件的行:

makelist.bat

文件列表.txt

此操作是必要的,因为脚本也列出了自身和 filelist.txt。

然后使用多行编辑工具一次在所有行周围添加标签,或构建照片库所需的所有其他内容,甚至是 javascript 数组等...最后将完成的工作复制并粘贴到您的图片库编码下的文件。 完毕。像喝一杯水一样容易:解释比做更难!的确。 ;-)


改进:

可以通过修改批处理命令来获取仅包含 jpg 文件的列表,如下所示:

dir *.jpg /b > filelist.txt
Image File Name 17.jpg
Image File Name 18.jpg
Image File Name 19.jpg
Image File Name 20.jpg
Image File Name 21.jpg
Image File Name 22.jpg
Image File Name 23.jpg
Image File Name 24.jpg
Image File Name 25.jpg
Image File Name 26.jpg
Image File Name 27.jpg
Image File Name 28.jpg
Image File Name 29.jpg
Image File Name 30.jpg
Image File Name 31.jpg
Image File Name 32.jpg

与其他文件扩展名相同。

【讨论】:

【参考方案7】:

有。使用 python 脚本创建您的照片列表,该脚本查看您想要的任何目录,并重命名或仅列出所有文件名。然后从它转到生成所需 HTML 的 python 脚本(此时应该很容易)。然后复制并粘贴。

Python 非常易于使用,您将能够在 5 分钟内下载它并在另外 10 分钟内找到读取/更改文件名的教程。

【讨论】:

以上是关于查找/替换但增加值的主要内容,如果未能解决你的问题,请参考以下文章

查找部分单词但替换整个单词[关闭]

RegEx(在 JavaScript 中查找/替换) - 匹配非字母数字字符但忽略 - 和 +

Eclipse查找替换巧妙技巧用法

Eclipse查找替换巧妙技巧用法

text

在查找/替换中使用ReplaceAll,但删除源格式