使用记事本将文本添加到每个文件的末尾++和正则表达式
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Lickro 的答案很棒,并且可以与 Notepad++ 一起使用。
以下是设置的屏幕截图:
我要添加换行符
\n
,然后添加文本。The answer of Lickro is great and works with Notepad++.
Here is a screenshot of the settings:
I am adding a linebreak
\n
and then the text.您可以搜索
并替换
为激活的多行正则表达式选项。在这种情况下, (.*) 匹配文件中的整个文本,并且由于括号周围,您可以使用 \1 访问匹配项并在其后附加一些内容。
You can search for
and replace with
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.
建议您使用批处理文件
应将 myline 附加到 myDir 中的所有文件
suggest you use a batch file
should append myline to all files in myDir