gpt4 book ai didi

vim - 六 : is there a way to manipulate regex matches?

转载 作者:行者123 更新时间:2023-12-04 18:27:56 25 4
gpt4 key购买 nike

我有一个包含以下行的文件:

img width="240" height="120"

我想按相同的量缩放宽度和高度,所以

:%s/width="\\(.*\\)" height="\\(.*\\)"/width="2*\\1" height="2*\\2"/g

产生

img width="2*240" height="2*120"

有没有办法让 vi 实际计算 2*240=480 并将 480 放入结果中。

感谢您的帮助。

最佳答案

我可以得到接近你要求的东西

:s/\(\d\+\)/\=submatch(1)*2/gc

但我会使用外部过滤器。

关于vim - 六 : is there a way to manipulate regex matches?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2284370/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com