Tagged Questions
The fixed-length-record tag has no wiki summary.
9
votes
3answers
588 views
C# - Can FileHelper FieldConverter routines refer to other fields in the record?
I am using the excellent FileHelpers library to process a fixed-length airline schedule file.
I have a date field, then a few fields later on in the record, a time field.
I want to combine both of ...
9
votes
4answers
4k views
How do I read fixed-length records in Perl?
What's the best way to read a fixed length record in Perl. I know to read a file like:
ABCDE 302
DEFGC 876
I can do
while (<FILE>) {
$key = substr($_, 0, 5);
$value = substr($_, 7, ...
4
votes
2answers
899 views
.NET Library For Fixed Length Text Files
I'm looking for a .NET (much preferably open source in C#) library for dealing with fixed length field text files. It wouldn't be too much to write one, but existing, tested work is always nicer, to ...
3
votes
2answers
1k views
Regex for fixed width field
I need to match a fixed width field on a file layout with a regular expression. The field is numeric/integer, always have four characters and is included in the range of 0..1331. When the number is ...
3
votes
2answers
184 views
What is the most simple/elegant way to calculate the length of a number written as text?
Given the maximum possible value, how to simply express the space needed to write such number in decimal form as text ?
The real task: logging process ids (pid_t) with fixed length, using gcc on ...
2
votes
2answers
101 views
Is xslt good approach to convert text to xml structure?
I am trying to find a better solution to convert a plain text (but with predefined lengths for each field) to xml.
For example the input text can be
"Testuser new york 10018", the first 11 ...
2
votes
2answers
86 views
What's a good library for parsing fixed-length records in Groovy?
I want a library that I can give it a file and a config param of column length, name, and possibly type and from that get back a map of the columns of each row.
This isn't difficult thing to do on my ...
1
vote
1answer
69 views
Java fixed-width file format read/write library
I'm looking for a good Java library that easily allows the read/write of fixed-width files. Needed for maintaining legacy systems, i.e. files are needed to work with COBOL.
Any suggestions are ...
1
vote
2answers
161 views
Convert CSV data into fixed width records using PHP and php-excel-reader class
My end result is to have a fixed length record created from either a csv of excel file using PHP. I have am working with excel_reader2.php and seems to import this nicely and displays it in the ...
1
vote
0answers
28 views
What programs or techniques do you use for reading/manipulating files with fixed length records?
When mocking up test data for our product, or debugging customer data, it would be nice to have an app that is able to highlight columns or groups of columns as fields, or even to have the editor be ...
1
vote
4answers
443 views
Reading a text file with fixed length fields and records in Delphi
I need to read data from a text file where the field lengths and record lengths are fixed. Fields are either zero padded or space padded, always appear in the same order and each record is terminated ...
1
vote
3answers
873 views
Creating a fixed length output string with sprintf containing floats
I'm trying to create a file which has the following structure:
- Each line has 32 bytes
- Each line looks like this format string: "%10i %3.7f %3.7f\n"
My Problem is the following: When i have a ...
1
vote
1answer
99 views
Is there a public / private key encryption scheme that will not change a message's length?
Is there a public / private key encryption scheme that will not change a message's length?
I would like to encrypt a message one packet at a time, but if the packet grows, it would no longer just be ...
1
vote
2answers
294 views
MySQL insert multiple fixed length values manually
I want to insert multiple values in a table where the value in one of the column increments sequentially. However, the sequence is a bit complex because of business requirements.
The single insert ...
1
vote
2answers
259 views
Best practices for fixed-width processing in .NET
I'm working a .NET web service that will be processing a text file with a relatively long, multilevel record format. Each record in the file represents a different entity; the record contains multiple ...
0
votes
0answers
22 views
How to get this to parse in Beaver?
I'm trying to parse this using Beaver:
UNH+messageXrefere+APERAK:D:97A:UNabcdefg\n
Where the last 7 characters before the \n are a fixed width field. Here's the JFlex file which basically makes ...
0
votes
6answers
1k views
Is there an smart way to write a fixed length flat file?
Is there any framework/library to help writing fixed length flat files in java?
I want to write a collection of beans/entities into a flat file without worrying with convertions, padding, alignment, ...
0
votes
1answer
636 views
stretch div content to the fixed position footer at the bottom of the page
My page consists from 4divs: header at the top, in the middle are menu div and content div, and at the bottom is a footer div.
Footer should be fixed at the bottom of the screen. I would like that ...
0
votes
2answers
430 views
Iterate through files and read records
What is the fastest way to the following in C# 3.5 :
Iterate through files in a directory
Read the file's records (fixed length of 247 characters)
Convert the fixed length string of each record to a ...
0
votes
3answers
273 views
How to export data into a prn file (fixed width with space fill) in Rails
I did not see this kind of task done anywhere and was wondering how I could export data in a .prn file format in RoR.
The idea would be to have:
field 1 -> length: 6 chars -> content: "blah"
field ...