This post is a follow-up from the previous with the perl code for manipulating a .csv file that has commas inside of the elements (that you're splitting by commas). #!usr/bin/perl sub store { @lines = @_; for ($i = 0; $i <= (scalar @lines); $i++) { $x = -1; @row = split(/,/, $lines[$i]); for ($c [...]
Content
File: How-To
Problem I have a Microsoft Access file but I run Mac OS on my computer. As there is no way to open the file on my Mac, I have developed a technique using a combination of virtual machine and operating systems in its stead. Things you'll need: VMWare Microsoft Windows XP Linux OS distribution Instructions: [...]
