-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
36 lines (28 loc) · 804 Bytes
/
Copy pathREADME
File metadata and controls
36 lines (28 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Field Stripper
Tabulates sequential, fixed length, undeliminated entries in a text file.
This program is currently used in a hospital to convert reports generated by old software into a more usable form.
Example of use:
== Input file contents ==
Height: 132
Name: Steven Rose
DOB: 14/12/1800
Height: 54
Name: Michelle Road
DOB: 14/12/1945
== Configuration file ==
Height:,4
Name:,14
DOB:,12
== Output file contents ==
132 Steven Rose 14/12/1800
54 Michelle Road 14/12/1945
TODO:
* Make user interface
* Clean up code
* Add additional output formats
* Allow used to specify a separator character instead of specifying each field length
* Give option to list column name in the output
* Create an installer (InnoSetup)
* Create help file / instructions / readme
Development requirements:
Uses Qt