将常量值添加到数字 XML 属性
背景
使用 vim (gvim) 将常量值添加到与正则表达式匹配的数字。
问题
以下正则表达式将匹配 width="32"
:
/width="\([0-9]\{2\}\)"
问题
如何将 width
属性的数值替换为使用该属性的数学表达式的结果价值?例如,我想执行以下全局替换:
:%s/width="\([0-9]\{2\}\)"/width="\1+10"/g
这将为 width="32"
和 width="105" 生成
为 width="42"
width="95"
。
更新
看起来这不能单独使用正则表达式来完成——有 vim 方式吗?
谢谢你!
Background
Add a constant value to numbers matched with a regular expression, using vim (gvim).
Problem
The following regular expression will match width="32"
:
/width="\([0-9]\{2\}\)"
Question
How do you replace the numeric value of the width
attribute with the results from a mathematical expression that uses the attribute's value? For example, I would like to perform the following global replacement:
:%s/width="\([0-9]\{2\}\)"/width="\1+10"/g
That would produce width="42"
for width="32"
and width="105"
for width="95"
.
Update
Looks like this cannot be done using regex alone -- is there a vim-way?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
/\zs
、/\ze
、sub-replace-expression
和submatch()
的文档。See documentation for
/\zs
,/\ze
,sub-replace-expression
andsubmatch()
.