There is a line "Count ComponentName RefDes PatternName Value TU Date of creation Date of change Manufacturer"
There is a need to split it into an array of strings, so that each element would be separate, something like:
1.Count 2.ComponentName . . . 7.Дата создания 8.Дата изменения 9.Производитель. If it were not for paragraphs 7 and 8, the question would not have arisen, for one could simply do .Split(' ') . But split divides points 7 and 8, which is not necessary.
Probably, somehow it can be done through regular expressions, but so far not at all. Tell me please?