// Buka file yang ingin Anda proses
final Redactor redactor = new Redactor("source.xlsx");
try
{
// Tambahkan aturan regex EMAIL dan penggantinya
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);
// Terapkan aturan redaksi
redactor.apply(redaction);
// Simpan file yang diperbarui
SaveOptions saveOptions = new SaveOptions();
saveOptions.setAddSuffix(true);
saveOptions.setRasterizeToPDF(false);
redactor.save(saveOptions);
}
finally { redactor.close(); }