Please tell me a simple script to implement the replacement of characters. You need to replace the wrong characters throughout the document. Thanks in advance.
Hello @Freddy651
Unfortunately, we don’t have ready-to-use examples of such macros.
The list of available macros samples you can find here:
https://api.onlyoffice.com/plugin/macrosamples/
Perhaps you can tell me a part of the code that will work with tables. I found an example that only works with text documents, not with tables. Can you give a couple of hints on how to implement similar code in tables?!
Code -
(function()
{
var oDocument = Api.GetDocument();
oDocument.SearchAndReplace({“searchString”: “first”, “replaceString”: “second”});
})();