Some Words not get Replaced Properly Please help me to replace this content. I have highlighted not replaced content. Also please provide the solution to remove the replaced content highlight color. i have attached document and issue screenshot here.PFA.
I have used below code:
doc.Document doc4 = new doc.Document(MyDir + "TableProcess.docx");
doc.Tables.Table table2 = (doc.Tables.Table)doc4.GetChild(doc.NodeType.Table, 0, true);
FindReplaceOptions opts1 = new FindReplaceOptions();
table2.Range.Replace("&lowst0", "0", opts1);
table2.Range.Replace("&lowet20", "20", opts1);
table2.Range.Replace("&midst40", "40", opts1);
table2.Range.Replace("&midet60", "60", opts1);
table2.Range.Replace("&d1", "1", opts1);
table2.Range.Replace("&highst80", "800", opts1);
table2.Range.Replace("&ac", "123", opts1);
doc4.Save(MyDir + "TableReplaceCellTextOut.docx");
AsposeTicket.zip (75.6 KB)