如何使用 vi 计算每行的列数?

发布于 2024-10-30 20:53:08 字数 86 浏览 4 评论 0原文

我有一个文件,每行应该有 8 列。但显然有几行有一个额外的“选项卡”。是否可以在 vi 中仅搜索包含超过 8 列的行,以便解决问题?

I have a file which is supposed to have exactly 8 columns on each line. But apparently there are a few lines that have an extra 'tab'. Is it possible in vi to search for only those lines that contain column more than 8 so that the problem can be fixed?

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

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

发布评论

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

评论(2

記憶穿過時間隧道 2024-11-06 20:53:08

要搜索任何超过 8 个字符的行,请尝试 /^.\{8}.\+$

逐步

/ - 开始搜索

^ - 表示“行的开头”

. - 任何字符

\{8} - 前面匹配的 8 个(在本例中...“任何字符”)

. - 任何字符

\+ - 1 个或多个前面的匹配

$ - 行尾

To search for any line with more than 8 characters try /^.\{8}.\+$

Step by step

/ - start a search

^ - means "beginning of the line"

. - any character

\{8} - 8 of the preceding match (in this case... "any character")

. - any character

\+ - 1 or more of the preceding match

$ - end of the line

旧时浪漫 2024-11-06 20:53:08

尝试以下 / 搜索:(

/^.........

即 9 个句点)

Try the following / search:

/^.........

(that's 9 periods)

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