Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Windows 下工作,我正在尝试清理我想研究的文本,Notepad++ 中删除 <= 10 个字符大小的行的正确正则表达式是什么。
搜索:
^.{0,9}((\r?\n)|$)
替换为空白(即什么都没有)
Step.1)将所有小于或等于 10 个字符的行替换为空字符串。 ^.{0,10}$
^.{0,10}$
Step.2)现在你有很多空行。因此,删除空行: Remove Empty Lines “编辑”>“行操作”>“删除空行”
Remove Empty Lines