Skip to content

Find and Replace Text in Documents

shoaibkhan-aspose edited this page Apr 17, 2014 · 1 revision

Aspose.Words

// Replaces all 'sad' and 'mad' occurrences with 'bad'
doc.getRange().replace("sad", "bad", false, true); 

// Replaces all 'sad' and 'mad' occurrences with 'bad'
doc.getRange().replace(Pattern.compile("[s|m]ad"), "bad");

Download Source Code

Clone this wiki locally