The replace command finds a specific text string on a page of a PDF document and replaces it with the substitute text.
In the following example, the name and fax number on a cover sheet, are replaced with row by row data from data source variables.
output “c:\output.pdf”
input “c:\cover.pdf”
replace "Name:","Name: ${FirstName} ${LastName}"
replace "Fax:","Fax: ${FaxNumber}"
Note: ALL instances of the original text on any page are replaced by a replace command.