Hi @TarunKittu
For word document, you can give a try with powershell script which does the replace operation in word

powershell script used
# Open Word and create a new document object
$word = New-Object -ComObject Word.Application
$doc = $word.Documents.Open("%word_doc%")
# Find and replace text in the document
$find = "%find_text%"
$replace = "%replace_text%"
$matchCase = $false
$matchWholeWord = $false
$matchWildcards = $false
$matchSoundsLike = $false
$matchAllWordForms = $false
$doc.Content.Find.Execute($find, $matchCase, $matchWholeWord, $matchWildcards, $matchSoundsLike, $matchAllWordForms, $true, 1, $false, $replace, 2)
# Save and close the document
$doc.Save()
$doc.Close()
# Quit Word
$word.Quit()Here %word_doc% , %replace_text%, %find_text% are variables from PAD for filepath, text to replace, text to find respectively in powershell script
Hope this helps 🙂
Mark it as solution if it resolves your query 🙂