親ノードのテキストを子ノードのテキストに置き換えたい XML ファイルがあります。これは XML の例です。
<output name="Element_152">
<field name="NAME" key="true">Unit001</field>
<field name="ITEM">CommStatus</field>
</output>
<output name="Element_153">
<field name="NAME" key="true">Unit001</field>
<field name="ITEM">UnitStatus</field>
</output>
<output name="Element_...">
属性の値を の値に変更したいので<field name="ITEM">
、次のようになります。
<output name="CommStatus">
<field name="NAME" key="true">Unit001</field>
<field name="ITEM">CommStatus</field>
</output>
<output name="UnitStatus">
<field name="NAME" key="true">Unit001</field>
<field name="ITEM">UnitStatus</field>
</output>
ありがとう
答え1
- Ctrl+H
- 検索対象:
(<output name=").+?(?=">(?:(?!</output>).)+<field name="ITEM">(.+?)</field>)
- と置換する:
$1$2
- チェック マッチケース
- チェック 包み込む
- チェック 正規表現
- チェック
. matches newline
- Replace all
説明:
(<output name=") # literally, group 1
.+? # 1 or more any character, not greedy
(?= # positive lookahead, make sure we have after:
"> # literally
(?: # non capture group, Tempered Greedy Token
(?!</output>) # negative lookahead, make sure we haven't <:output> after
. # any character
)+ # end group, must appear 1 or more times
<field name="ITEM"> # literally
(.+?) # group 2, 1 or more any character, not greedy
</field> # literally
) # end lookahead
交換:
$1 # content of group 1 (<output name=")
$2 # content of group 2 (the value of ITEM)
スクリーンショット(前):
スクリーンショット(後):