Using C#, is there a good way to find and replace a text string in a docx file without having word installed on that machine?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Yes, using Open XML. Here's an article which addresses your specific question: Creating a Simple Search and Replace Utility for Word 2007 Open XML Format Documents

link|improve this answer
Thanks that definitely got me started. It looks like it is all based on System.IO.Packaging. Since this is fairly simple, can it be done without the Open XML Format SDK? – TimothyAWiseman Jul 30 '10 at 23:30
1  
Absolutely - I rarely use the SDK myself. I primarily program against PowerPoint (PresentationML and DrawingML as opposed to Word's WordProcessingML) using only System.IO.Packaging and Linq-to-XML. So I'll have to point you to a Ken Getz article: msdn.microsoft.com/en-us/library/bb738371(office.12).aspx. Look for any more of his articles written in 2006 - they all use System.IO.Packaging. After that, he started writing articles with the SDK. You can also check out openxmldeveloper.org – Otaku Jul 30 '10 at 23:42
Awesome, thank you. Also, this reference by Vikas Goyal helped me tremendously both in getting the answer I needed and in (mostly) understanding what was going on in the process: devx.com/dotnet/Article/42221/1954 – TimothyAWiseman Aug 2 '10 at 4:30
@timothyawiseman: the devx article is a really good one. glad to hear this is working out for you. – Otaku Aug 2 '10 at 5:50
feedback

You may also try Aspose.Words for .NET in order to find and replace text in Word document. This component doesn't require MS Office to be installed. The API is quite simple and easy to use and implement.

Disclosure: I work as developer evangelist at Aspose.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.