我想替换这个
disable iff (!(gth_ibuf_p[i].pwr_good_rst_b && gth_ibuf_p[i].reset_b)
通过
disable iff (((gth_ibuf_p[i].pwr_good_rst_b || gth_ibuf_p[i].reset_b) !== 1)
我使用的命令是
:%s/disable iff (!(gth_ibuf_p[i\].pwr_good_rst_b && gth_ibuf_p[i\].reset_b)/disable iff (((gth_ibuf_p[i\].pwr_good_rst_b || gth_ibuf_p[i\].reset_b) !== 1)/gc
并显示
the pattern is not found
我单独搜索了这些模式。在%s中它没有发生。
任何人都可以帮我吗?
答案 0 :(得分:3)
只是:
:%s/\V..your.pattern..../..your..replacement../gc
在\V
之后添加:s/
以使用very nomagic
。执行:h magic
查看详细信息。