Tag Archives: parse
PERL input and output files
To read an input file, edit your data and put it to an output file try this: #! /usr/bin/perl -w use strict; my $file = “in.csv”; my $outfile = “out.csv”; open(IN, “<$file”) or die “Could not open $file\n”; open(OUT, “>$outfile”) … Continue reading
First steps in Perl parsing CSV from Mamut to Joomla Virtuemart
Today at the office I was asked to help migrating the webshop from Mamut to Joomla Virtuemart. I installed the new webshop, and used the plugin CSVImport to import all data about the products. As allways Mamut was a pain … Continue reading
Posted in At the office, Programming
Tagged C#, convert, csv, example, export, import, joomla, mamut, migrate, parse, parsing, perl, Virtuemart, webshop
3 Comments