Thank you very much for your help.
Now, I am using QM to modify XML. It is very convenient.
In the example above:
1. Add the key value of key20, only one group, how to add the following multiple sets of key values?
2. How to replace all the key values of key5 with the key values of the following ?
Now, I am using QM to modify XML. It is very convenient.
In the example above:
1. Add the key value of key20, only one group, how to add the following multiple sets of key values?
2. How to replace all the key values of key5 with the key values of the following ?
<key>key20</key>
<array>
<dict>
<key>Comment</key>
<string>Comment1</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment1</data>
<key>Replace</key>
<data>Comment1+</data>
</dict>
<dict>
<key>Comment</key>
<string>Comment2</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment2</data>
<key>Replace</key>
<data>Comment2+</data>
</dict>
<dict>
<key>Comment</key>
<string>Comment3</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment3</data>
<key>Replace</key>
<data>Comment3+</data>
</dict>
</array>
<key>key5</key>
<array>
<dict>
<key>Comment</key>
<string>Comment1</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment1</data>
<key>Replace</key>
<data>Comment1+</data>
</dict>
<dict>
<key>Comment</key>
<string>Comment2</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment2</data>
<key>Replace</key>
<data>Comment2+</data>
</dict>
<dict>
<key>Comment</key>
<string>Comment3</string>
<key>Disabled</key>
<true/>
<key>Find</key>
<data>Comment3</data>
<key>Replace</key>
<data>Comment3+</data>
</dict>
</array>