// سندی که میخواهید ویرایش کنید را باز کنید
final Redactor redactor = new Redactor("source.pdf");
try
{
// یک الگوی regex ایمیل و متن جایگزین را اضافه کنید
ReplacementOptions repl_opt = new ReplacementOptions("[redacted]");
String emailRegex = "[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}";
RegexRedaction redaction = new RegexRedaction(emailRegex, repl_opt);
// ویرایش را بر روی محتوای مطابقت اعمال کنید
redactor.apply(redaction);
// نسخه ویرایششده را ذخیره کنید
SaveOptions saveOptions = new SaveOptions();
saveOptions.setAddSuffix(true);
saveOptions.setRasterizeToPDF(false);
redactor.save(saveOptions);
}
finally { redactor.close(); }