将元素插入到所有XML标记中

时间:2017-10-22 07:59:56

标签: xml notepad++ sublimetext3

我有像这样的XML脚本......

<line id='1'>............</line>

我需要在标签中添加更多元素,基本上是这样:

<line id='1' anim="idle" exp="F00">.........</line>

是否有快速方法对文档中的所有行执行此操作?

1 个答案:

答案 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>