I never did a lot of programming - I was put to work with manipulating data from comment cards. Using perl so far, I got a database to correctly put my daily comments into an array. Comments represent each LINE of text in the database, so I just split the array into line breaks.
my @comments = split("\n", $c_data);
And yes, this was my first programming that helped me figure out for too long.
At this point, I now need to organize these array elements (is that what should I call them?) Into my own heading-based scalars (this is the behavior of a database that was corrupted at some point).
An example of how two elements of an array look:
print "$comments[0]\n";
This dining experience was GOOD blah blah blah.
or
print "$comments[1]\n";
Overall this was a BAD time and me and my blah blah.
"" "" "" , .
Perl ?