Is there a way to read rtf files into a string and then replace some patterns on them? Ideally I would want to save the new string into an rtf file again and open from wordpad. All I see is the richtextbox solution which i would like to skip.
I used to do that with, Microsoft.Office.Interop, by creating Word.Application
then Word.Document
then oDoc.Content.Find.Execute(FindText:="[[Blah Blah]]", ReplaceWith:="", Replace:=Word.WdReplace.wdReplaceAll)
but I realize that Word might not always be installed on client...