我想在 notepad++ 中在每个打开的文件底部添加文本(作为额外行)。我知道如何在文件开头添加。
查找内容:- (?s).* 替换为:- 您的文本\r\n$0
这对我帮助很大。但不知道如何在底部添加(带有文本的新行)。
"text hello friend"
"text hello friend"
应该改变,在底部添加新行。例如
"text hello friend"
"text hello friend"
**"text do not sin friend"**
笔记 ”文字不要犯罪朋友“需要添加为新队在多个文件中。
我怎样才能做到这一点?
答案1
我想在 notepad++ 中在每个打开的文件底部添加文本(作为额外的行)
菜单“搜索”>“替换”(或Ctrl+ H)
将“查找内容”设置为
(.*+)
- 当启用“匹配换行符”时,此正则表达式将选择整个文件。将“替换为”设置为
\1\r\n**"text do not sin friend"**
启用“正则表达式”和“匹配换行符”
点击“全部替换”
笔记:
前:
"text hello friend"
"text hello friend"
后:
"text hello friend"
"text hello friend"
**"text do not sin friend"**