A simple web-based utility to convert Core Banking System generated textual reports to CSV format, which can be easily opened with Excel. Utility works on Pattern based data sanitisation and automated column detection logic, to convert textual data into tabular data.
Note: We do not collect/send any of the data to our server. All processing of report is done itself on your browser
Pattern Symbol Reference
Symbol
Description
^
Line starts with
$
Line ends with
\d
A Digit
\w
A Character
\s
A Space
.
Any Digit/Character/Space
+
One or more Digit/Character/Space
{n}
n number of Digit/Character/Space
{n,}
n or more number of Digit/Character/Space
Pattern Examples
^\d\d-\d\d-\d{4}.+
Line starting with date (in DD-MM-YYYY format), followed by any characters
^\d\d-\w\w\w-\d{4}.+
Line starting with date (in DD-MMM-YYYY format: like 04-Apr-2021), followed by any characters