VI里面有没有查找,替换的功能,怎么实现

发布于 2022-07-21 17:24:16 字数 20 浏览 7 评论 5

VI里面有没有查找,替换的功能,怎么实现

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

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

发布评论

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

评论(5

山川志 2022-07-22 17:06:48

some examples:
Searching:
        /                        search
        ?                        search  backward
        #                                search current word
        n                                repeat search in same direction
        N                                Repeat search in opposite direction
        /[Return]                        repeat search forward
        ?[Return]                        repeat search backward

Replacing:
        cw                                replace a word
        c2w                                replace 2 words
        c2b                                replace 2 words backward
        c0                                replace to the beginning of line
        c$                                replace to the end of line
        cc                                replace entire line
        r                                replace 1 character
        ~                                chaning case: upper -> lower, lower -> upper
        :%s/string1/string2/g                Replace string1 with string2 in the whole document

电影里的梦 2022-07-22 16:44:31

楼主真幽默

战皆罪 2022-07-22 16:21:57

%s/this/that/g

简单爱 2022-07-22 15:51:46

有呀,看manual...

怎会甘心 2022-07-22 05:38:15

原帖由 john3851 于 2006-4-6 09:39 发表
VI里面有没有查找,替换的功能,怎么实现

http://edt1023.sayya.org/vim/node6.html

==

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