我有像这样的XML脚本......
<line id='1'>............</line>
我需要在标签中添加更多元素,基本上是这样:
<line id='1' anim="idle" exp="F00">.........</line>
是否有快速方法对文档中的所有行执行此操作?
答案 0 :(得分:2)
<line id='\w+'
$0 anim="idle" exp="F00"
<强>解释强>
<line id=' : literally "<line id='"
\w+ : 1 or more word character
<强>替换强>
$0 : whole match, ie. the tag
anim="idle" exp="F00" : what you want to add with a space before
给定示例的结果:
<line id='1' anim="idle" exp="F00">............</line>