Does anyone know how to split this file
1 TESTAAA SERNUM A DESCRIPTION
2 TESTBBB ANOTHR ANOTHER DESCRIPTION
3 TESTXXX BLAHBL
Each column has a fixed width and I'm planning to do it with a regex but I don't know how to do it exactly.
Having
{id} {firsttext} {serialhere} {description}
4 22 6 30+
Someone recommend with a pattern like this (.{4})(.{22})(.{6})(.+)? then split it by split(' ') but the user stated that this won't work with a column has no value, but even that, he didn't do any example.
I heard also about the TextFieldParser but it has some issues about performance.
Can anyone tell me how to split by fixed width?
Thanks.
Without seeing any reason not to, I would probably just use
Substring
.Having said that, the Regex should work too.
The following example works on the input shown (rather than the numbers you've given) and assumes serial number is a required field, but may not take up its entire length + description is optional. Make adjustments following that principle if these assumptions are incorrect.
Or as an explanatory example with more obvious naming and a slightly clearer example for serial length:
The output from either: