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.
因此,如果我们有一些行长可变的 txt 文件,如何使用更少的字符数(比如说 20 个)的 emacs 正则表达式行进行搜索。
这应该可以完成它匹配任何带有 0 到 20 个标记的行的工作
^[^\n]{0,20}$
^行首(或字符串)
^
[^\n]任何不是新行的东西
[^\n]
{0,20}之前的 0 到 20 次
{0,20}
$行尾(或字符串)
$