I'm trying to remove all passwords from KeePass and have tried the XML Replace function, trouble with this is that it requires you to spcify a string to replace.
I want to replace all passwords with <null>.</null>
How can I do this?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I'm trying to remove all passwords from KeePass and have tried the XML Replace function, trouble with this is that it requires you to spcify a string to replace.
I want to replace all passwords with <null>.</null>
How can I do this?
You can use XML Replace with the following settings:
Select nodes:
//Entry/String[Key='Password']/ValueAction: Replace data
Data: Inner text
Find what:
^.*$Replace with:
<null>Regular expressions: Activated
Best regards,
Dominik