记事本的编辑形式++ “查找当前文档中的所有内容”窗户

发布于 2024-10-31 07:44:50 字数 1459 浏览 4 评论 0原文

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

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

发布评论

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

评论(3

阳光下慵懒的猫 2024-11-07 07:44:50

在将搜索结果粘贴到单词 doc 中之前,您可以使用与此模式匹配的正则表达式执行“查找和替换”;

\s+行\d+:\s+

只需用空字符串替换匹配项 - 这将从每行中删除行号前缀。

Before pasting the search results into the word doc, you could do a "Find and Replace" using regex matching with this pattern;

\s+Line \d+:\s+

Just replace matches with an empty string - that will remove the line number prefixes from every line.

半世晨晓 2024-11-07 07:44:50

您可以做的是将搜索结果复制/粘贴到新的 Notepad++ 文档中。然后进行搜索并用正则表达式替换。您搜索类似以下内容:
\s*行\d+:\s
并替换为任何内容。不要忘记检查正则表达式选项。

What you could do is to copy / paste the search results into a new Notepad++ document. Then you do a search and replace with regular expressions. You search for something like:
\s*Line \d+:\s
and replace with nothing. Don't forget to check the regular expression option.

纵性 2024-11-07 07:44:50

在学习正则表达式之前,我曾经使用过一种手动方法,那就是在记事本++中,您可以通过将光标留在文档的开头,滚动到文档的末尾,按住 Alt+ 来进行列选择单击要消除的列位置时按住 Shift。

您可以通过这种方式选择所有行号前缀,然后只需按删除即可。

There is a manual approach which i used to do before learning about regex, and that is in notepad++ you can do column select by leaving your cursor at the beginning of the document, scroll to the end of the document, hold Alt+Shift while you click on the column position you'd like to eliminate.

You'll be able to select all the line number prefixes this way, after which you just press delete.

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