使用记事本将文本添加到每个文件的末尾++和正则表达式

发布于 2024-10-31 10:38:42 字数 66 浏览 1 评论 0原文

我有 100 个文件,需要在每个文件的末尾附加一行。

有没有办法用 Notepad++ 来做到这一点?

I have 100 files and need to append a line in the end of each single file.

Is there a way how I can do this with Notepad++?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

行雁书 2024-11-07 10:38:43

Lickro 的答案很棒,并且可以与 Notepad++ 一起使用。

以下是设置的屏幕截图:

notepad search and Replace

我要添加换行符 \n,然后添加文本。

The answer of Lickro is great and works with Notepad++.

Here is a screenshot of the settings:

notepad search and replace

I am adding a linebreak \n and then the text.

血之狂魔 2024-11-07 10:38:43

您可以搜索

(.*)

并替换

"\1"

为激活的多行正则表达式选项。在这种情况下, (.*) 匹配文件中的整个文本,并且由于括号周围,您可以使用 \1 访问匹配项并在其后附加一些内容。

You can search for

(.*)

and replace with

"\1"

with multiline regular expression option activated. In this case (.*) matches whole text in a file and because of the brackets around you can access the match using \1 and append something after that.

流云如水 2024-11-07 10:38:43

建议您使用批处理文件

FOR %%G IN (*) DO echo "myline" >> %%G "C:\myDir"

应将 myline 附加到 myDir 中的所有文件

suggest you use a batch file

FOR %%G IN (*) DO echo "myline" >> %%G "C:\myDir"

should append myline to all files in myDir

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文