Parse
Parse Fixed Width data to object.
Last updated
Was this helpful?
Parse Fixed Width data to object.
Task version: 1.0.2
Required Frends version: 5.5+
Required .NET version: 6.0
Compatible Agents: Crossplatform
Source code: https://github.com/FrendsPlatform/Frends.FixedWidthFlatFile/tree/main/Frends.FixedWidthFlatFile.Parse
FlatFileContent : String
Fixed width flat file content in string format.
Default: -
Example: Name Street StartDate Veijo FrendsStr 20180527 Hodor HodorsStr 20180101
HeaderRow : HeaderRowType
None: Flat file does not contain header row
FixedWidth: Header row is parsed using column specification
Delimited: Header row is parsed using delimiter char
Possible values:
None: None: Flat file does not contain header row
FixedWidth: Header row is parsed using column specification
Delimited: Header row is parsed using delimiter char
FixedWidth: None: Flat file does not contain header row
FixedWidth: Header row is parsed using column specification
Delimited: Header row is parsed using delimiter char
Delimited: None: Flat file does not contain header row
FixedWidth: Header row is parsed using column specification
Delimited: Header row is parsed using delimiter char
Default: 1
Example: HeaderRowType.FixedWidth
HeaderDelimiter : String
If header row uses delimiter set it here.
Default: -
Example: ;
ColumnSpecifications : ColumnSpecification[]
Column specifications for the data that is being parsed.
Default: -
Example: [ Example, ColumnType.String, yyyy-MM-ddTHH:mm:ss, 5 ]
SkipRows : Boolean
Enables skipping of data rows.
Default: False
Example: false
SkipRowsFromTop : Int32
Count of data rows to skip from top.
Default: 0
Example: 0
SkipRowsFromBottom : Int32
Count of data rows to skip from bottom.
Default: 0
Example: 0
Data : List<Dictionary2>`
Parsed fixed flat file data.
Example: {[ Name, Foo ], [ Street, Bar ]}
Changelog for Task Frends.FixedWidthFlatFile.Parse.
Documentational changes.
Documentation updates.
Initial implementation
Last updated
Was this helpful?
Was this helpful?

