Hi all,
I have thousands of text files, and each file contains just a single line of text.
Any single file looks like this:
somevalue1|somevalue2|somevalue3|somevalue4|somevalue5
The format never changes, and from above, you can see how each value is separated by a "|". And there are always exactly 5 values in each file.
Can someone please help me in the right direction? I'm not sure how I could go about extracting each value, into a separate string, like:
string value1,value2,value3,value4,value5;
value1=somevalue1;
value2=somevalue2;
etc etc.
I hope this makes sense. And appreciate any help at all
Thank you