I'm supposed to read in a text file and print out one quoted string per line. The size of the quoted String has to be the same too.
This is the read file:
"check on","SKY yelow, blue ocean","","1598"
"6946","Jaming","Mountain range","GOOO, five, three!","912.3"
And this is the expected output:
check on
SKY yelow, blue ocean
1598
6946
jaming
Mountain range
GOOO, five, three!
912.3
I know how to read the file, but how would I get the output as shown above?
Thanks in advance!