In the list of BUG fixes for version 9.6.0, it was stated that a known set of bugs around text search and replace has been resolved. Unfortunately, that is not the case.
PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf(“Policy.pdf”);
editor.ReplaceText("{FirstName}", “Jim Marvel”);
editor.ReplaceText("{SomethingWorthInsuring}",
“very expensive building at 100 E. Randolph St, Chicago, IL 60604”);
editor.ReplaceText("{SomeDate}", DateTime.Today.AddMonths(3).ToShortDateString());
editor.ReplaceText("{YourSupportTeam}", “Property Insurance Team”);
editor.Save(“PolicyAnew.pdf”);