Tested tool guide
Tested browser tools
Checked August 16, 2026
What Fixed-Width Text Converter does, with a checked example
Fixed-Width Text Converter restructures line-oriented records whose fields occupy known character spans. Enter or paste the records, name each field, define its span, and choose CSV or JSON output. The same map is applied to every line, making the tool appropriate when separators are absent but column boundaries are documented. The common mistake is trusting visual alignment: a tab, an extra character, or a record with a different layout can put later values under the wrong field even when the source looks columnar.
Worked example
A concrete input and expected output from the current implementation.
Input
Fields:
code = first 2 characters
status = next 3 characters
Text:
AAnew
BBold
Format: JSON
->
Expected output
[
{"code":"AA","status":"new"},
{"code":"BB","status":"old"}
] Each five-character record is divided after its second character. The first slice becomes code, and the remaining three characters become status.