How to Delete or Remove the Document Version Content

Hi All ,

We are working a new project of removing the special characters in pdf file ,

So first we are converting the pdf file into word , then particular special characters removed in word document ,after that we need to convert the removed special characters word file to pdf ,

We have using balareva pdf activity package lower version to convert a pdf to word ,

But we have one issue after converting the pdf to word ,

Need to delete or remove the document version details content ,

Please find the below snapshot for your reference ,

Kindly guide me how to remove the above mentioned content is word document ,

Thanks in advance

Regards,
Mukesh K A

@mukeshsmart78

Use a replace text activity using word appli ation scope and give the exact text you want to replace and replace with string.empty…which is basically empty string

Cheers

Hi @mukeshsmart78

Try this-

  1. Use the “Read Text” activity from the UiPath Word activities package to read the contents of the Word document into a string variable.
  2. Identify the specific document version details content that you want to remove. It could be a particular section, text, or a specific format.
  3. Use string manipulation methods or regular expressions to remove the identified document version details content from the string variable.
  4. Once the document version details content is removed, you can proceed with further processing or save the updated string back to a new Word document.

Thanks!!