I am working on a requirement where I have to find the text and just replace it in PDF.
for eg.
$date
Re: Fee Dispute No. [Case Number], [Case Title]
Dear $RespondentName.
I have to find the “$date” and replace it with current date.
I have tried
doc.Range.Replace("$date",“Todays date”,false,true);
but it is not replacing the string.
I have attached the doc also.
Please help