Oscura i file CSV tramite C# nelle .NET app principali

Cerca e sostituisci testo in documenti, fogli di lavoro e presentazioni Office e OpenOffice nonché CSV su Windows, Linux e macOS


Redazione del documento per l'API .NET

Un’unica interfaccia indipendente dal formato per l’oscuramento di informazioni riservate e classificate da documenti e immagini PDF, Word, Excel, PowerPoint, inclusa la possibilità di modificare i metadati e rimuovere i commenti. Con lo strumento GroupDocs.Redaction for .NET puoi redigere il testo e salvare il documento redatto in PDF, trasformando tutte le pagine in immagini raster o mantenendo il documento nel suo formato originale per ulteriori modifiche.

Oscura testo esatto da CSV tramite C#

GroupDocs.Redaction consente agli .NET sviluppatori di aggiungere facilmente CSV la funzionalità di revisione dei file con pochi semplici passaggi.

  • Crea un’istanza della classe Redactor e carica il file CSV
  • Crea un’istanza della classe ExactPhraseRedaction per trovare e sostituire il testo
  • Richiama il metodo Redactor.Apply con oggetto di ExactPhraseRedaction

Inizia con l'API Redaction

Installa dalla riga di comando come nuget install GroupDocs.Redaction o tramite Package Manager Console di Visual Studio con Install-Package GroupDocs.Redaction. In alternativa, scarica il programma di installazione MSI offline o le DLL in un file ZIP da download e fai riferimento a esso manualmente nel tuo progetto.

using (Redactor redactor = new Redactor(@"sample.csv"))
{
	redactor.Apply(new ExactPhraseRedaction("John Doe", new ReplacementOptions("[personal]")));
	redactor.Save();
}

CSV It Live Demo

Checkout the free online demo for CSV It.

No need to set up

No need to write any code

Just upload the source file

Get the download link

What is CSV File Format?

Files with .csv (Comma Separated Values) extension represent plain text files that contain records of data with comma separated values. Each line in a CSV file is a new record from the set of records contained in the file. Such files are generated when data transfer is intended from one storage system to another. Since all applications can recognize records separated by comma, import of such data files to database is done very conveniently. Almost all spreadsheet applications such as Microsoft Excel or OpenOffice Calc can import CSV without much effort. Data imported from such files is arranged in cells of a spreadsheet for representation to user.

Read More

Other It Options

DOC It

(Microsoft Word Binary Format)

DOCM It

(Microsoft Word 2007 Marco File)

DOCX It

(Office 2007+ Word Document)

DOT It

(Microsoft Word Template Files)

DOTM It

(Microsoft Word 2007+ Template File)

DOTX It

(Microsoft Word Template File )

PDF It

(Portable Document Format)

POT It

(Microsoft PowerPoint Template Files)

POTM It

(Microsoft PowerPoint Template File)

PPS It

(PowerPoint Slide Show)

PPSM It

(Macro-enabled Slide Show)

PPSX It

(PowerPoint Slide Show)

PPT It

(Microsoft PowerPoint 97-2003)

PPTM It

(Macro-enabled Presentation File)

PPTX It

(Open XML presentation Format)

RTF It

(Rich Text Format)

XLS It

(Microsoft Excel Spreadsheet (Legacy))

XLSM It

(Macro-enabled Spreadsheet)

XLSX It

(Open XML Workbook)

XLT It

(Excel 97 - 2003 Template)

XLTM It

(Excel Macro-Enabled Template)

XLTX It

(Excel Template)

Back to top
 Italiano