Related blog post: Find, Replace, Hide Text in Word DOC/DOCX using C#
Find, Replace & Hide Text, Phrase, Words in Word Documents using C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find text and hide it by drawing rectangle over it using C# | |
using (Redactor redactor = new Redactor(@"path/document.docx")) | |
{ | |
redactor.Apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions(System.Drawing.Color.Black))); | |
redactor.Save(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find exact phrase and replace it with some other text using C# | |
using (Redactor redactor = new Redactor(@"path/document.docx")) | |
{ | |
redactor.Apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[censored]"))); | |
redactor.Save(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find exact phrase (case-sensitive) and replace it with some other text using C# | |
using (Redactor redactor = new Redactor(@"path/document.docx")) | |
{ | |
redactor.Apply(new ExactPhraseRedaction("John Doe", true /*isCaseSensitive*/, new ReplacementOptions("[censored]"))); | |
redactor.Save(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find text using regular expression and replace it with some other text using C# | |
using (Redactor redactor = new Redactor(@"path/document.docx")) | |
{ | |
redactor.Apply(new RegexRedaction("\\d{2}\\s*\\d{2}[^\\d]*\\d{6}", new ReplacementOptions("[censored]"))); | |
redactor.Save(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment