Hi, we have Aspose version 14.8.0 installed, I am wondering if you might be able to tell me how to replace a string with a table
eg.
Let’s say I have a table:
Table tbl = builder.StartTable();
etc until the table is done. -> builder.EndTable()
And then I want to use this table to replace a string – something like this:
doc.Range.Replace(new Regex("\[Table_To_Replace\]"), tbl );
How would I do that?
Thank you very much in advance!