Transforms a CSV (Comma-Separated Values) file into an XML document.
Input Type: CSV | Output Type: Plain TextConvert fixed width text file to CSV document
Transforms an input text of fixed width fields to a CSV document/table. In the "Fixed Width Text Format," every column has a predefined width and is padded with pad characters, in case the actual column value is shorter than the specified length.
Input Type: Plain Text | Output Type: CSVConvert CSV document to INSERT INTO Statements
Converts a CSV file to a list of SQL statements for inserting the file's values into a database.
Input Type: CSV | Output Type: Plain TextA "Hello World" example demonstrating how to add a row to a CSV document.
Input Type: Plain Text | Output Type: CSVSort a CSV file by a given column
Sorts the rows of a CSV document based on the values of a specified column.
Input Type: CSV | Output Type: CSV