Find & Replace a set of string across multiple files
I receive a set of PDFs every week that i need to update.
For each PDF i have 2 sets of strings that need to be found and replaced.
Set 1 :
A => 123
B => 456
C => 789
Set 2
A => 987
B => 654
C => 321
I could this manually but the issue is that I have new files coming in every week and the replacements are all the same, i have about 20 strings to replace per set and I would like to automate this as much as possible.
How can I perform this action without having to do this tedious one by one ?
Could JavaScript assist ? anything else ?
Thanks for your help, hoping to find the answers !
