Sha256: 4d2b7b4510993b50408e7566c05166f9ec1b509fe1514a6ef2e96f67d6b3b0bc
Contents?: true
Size: 956 Bytes
Versions: 1
Compression:
Stored size: 956 Bytes
Contents
[![Build Status](https://travis-ci.org/kakoni/embulk-parser-fixed.svg?branch=master)](https://travis-ci.org/kakoni/embulk-parser-fixed) # Fixed width parser plugin for Embulk Fixed width parser. Useful for parsing fixed width format files. Can be used to transform `FirstSecond Third` line to `{key: "First", key2: "Second", key3: "Third"}` ## Overview * **Plugin type**: parser * **Guess supported**: no ## Configuration - **columns**: declares the list of columns, their types and positions as range in input. Values will be assigned to these in order. - **strip_whitespace**: Strip whitespace from parsed values. (bool, default: true) ## Example ```yaml in: type: any file input plugin type parser: type: unpack columns: - {name: first, type: string, pos: 0..1} - {name: second, type: string, pos: 3..7} - {name: third, type: string, pos: 10..12} ``` ## Install plugin ``` $ embulk gem install embulk-parser-fixed ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
embulk-parser-fixed-0.1.0 | README.md |