I have a txt file which is composed of text and numbers. It looks something like this:
> this is a paragraph which is introductory which lasts
some more lines
text text text
567 45 32 468
974 35 3578 4467
325 765 355 5466
text text text
1 3 6
text text>
What i need is to store the rows which contains 4 number elements.
When i use the read command all elements are read and stored as strings. I'm not sure if i can convert the numbers into digits without filtering them first.
I would appreciate any help. Thanks.