Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

pl c sv text format wrap

by edrew04 (Initiate)
on Jan 25, 2015 at 09:36 UTC ( [id://1114420]=perlquestion: print w/replies, xml ) Need Help??

edrew04 has asked for the wisdom of the Perl Monks concerning the following question:

Hi can you help me on creating a pl of c sv text format example:

AMS.csv

1,Go,Manuel,V.,1/22/2015,8:30AM,5:30PM,1001 2,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,1002 3,Sioting,Michael,S.,1/22/2015,8:30AM,5:30PM,1003

After running the ksh wrapper it should become like this:

2002,Go,Manuel,V.,1/22/2015,8:30AM,5:30PM,IT 2001,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,HR 2003,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,PURCHASING

here are my ff file names:

WRAPPER.KSH ./EXPORT_AMS.KSH -MOVE FROM SOURCE TO OPS FOLDER ./TRANSFORM_AMS_PPS.KSH - transform AMS format to PPS ./IMPORT_PPS.KSH - MOVE FROM OPS TO DEST WRAPPER TRANSFORM AMS.CSV TO PPS.CSV AMS ---> PPS

Replies are listed 'Best First'.
Re: creating a ksh wrapper in perl
by pme (Monsignor) on Jan 25, 2015 at 09:50 UTC
    Hi edrew04

    Welcome to the monastery.

    At least two things are unclear to me:
    - 'Sioting,Michael' is replaced with 'Calinisan,Peter'. Is it a typo?
    - Where do 'IT', 'HR', 'PURCHASING' come from?

      yes it is a typo

      here is where i should get the data

      AMS.csv

      1,Go,Manuel,V.,1/22/2015,8:30AM,5:30PM,1001 2,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,1002 3,Sioting,Michael,S.,1/22/2015,8:30AM,5:30PM,1003 1,2002 2,2001 3,2003 1001,IT 1002,HR 1003,PURCHASING

      to become PPS.csv

      2002,Go,Manuel,V.,1/22/2015,8:30AM,5:30PM,IT 2001,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,HR 2003,Sioting,Michael,S.,1/22/2015,8:30AM,5:30PM,PURCHASING

      I had made my initial scripting here but it generally duplicates it

      use strict; use warnings; use Text::CSV; use Data::Dump qw(dump); my @data; # 2D array for CSV data my $file = 'AMS.csv'; my $csv = Text::CSV->new({ binary => 1, quote_null => 0 }); open my $fh, '<', $file or die "Could not open $file: $!"; while( my $column = $csv->getline( $fh ) ) { #shift @$column; push @data, $column; } open $fh, ">:encoding(utf8)", "PPS.csv" or die "PPS.csv: $!"; for (@data) { $csv->print($fh, $_); print $fh "\n"; } close $fh or die "PPS.csv: $!";
        Try
        use strict; use warnings; use Text::CSV; my @data; # 2D array for CSV data my %dict=(); my $file = 'AMS.csv'; my $csv = Text::CSV->new({ binary => 1, quote_null => 0 }); open my $fh, '<', $file or die "Could not open $file: $!"; while( my $ar = $csv->getline( $fh ) ) { if (@$ar > 2){ push @data,$ar; } elsif (@$ar == 2) { $dict{$ar->[0]} = $ar->[1]; } } open $fh, ">:encoding(utf8)", "PPS.csv" or die "PPS.csv: $!"; for my $ar (@data) { $ar->[0] = $dict{$ar->[0]}; $ar->[-1] = $dict{$ar->[-1]}; $csv->print($fh, $ar); print $fh "\n"; } close $fh or die "PPS.csv: $!";
        poj
        Hi edrew04, here is a working version. The newly added lines are marked with '###'.
        use strict; use warnings; use Text::CSV; my @data; # 2D array for CSV data my $file = 'AMS.csv'; my %dept_code = ( ### 1001 => 'IT', ### 1002 => 'HR', ### 1003 => 'PURCHASING', ### ); my $csv = Text::CSV->new({ binary => 1, quote_null => 0 }); open my $fh, '<', $file or die "Could not open $file: $!"; while( my $column = $csv->getline( $fh ) ) { push @data, $column; } open $fh, ">:encoding(utf8)", "PPS.csv" or die "PPS.csv: $!"; for (@data) { $_->[0] += 2000; ### $_->[7] = $dept_code{$_->[7]}; ### $csv->print($fh, $_); print $fh "\n"; } close $fh or die "PPS.csv: $!";
Re: creating a ksh wrapper in perl
by LanX (Saint) on Jan 25, 2015 at 09:51 UTC
Re: creating a ksh wrapper in perl
by Anonymous Monk on Jan 25, 2015 at 13:52 UTC

    You should almost certainly use Text::CSV to handle the CSV input and output.

Re: pl c sv text format wrap
by karlgoethebier (Abbot) on Jan 25, 2015 at 18:57 UTC

    Your data seems a bit weird (different amount of columns) - but try this ugly solution using paragraph mode:

    #!/usr/bin/env perl use strict; use warnings; use Data::Dump; my $file = qq(AMS.csv); local $/ = ""; open( my $fh, "<", $file ) || die $!; my @array = <$fh>; close $fh; # dd \@array; my @one = split /\n/, $array[0]; my @two = split /\n/, $array[1]; my @three = split /\n/, $array[2]; # dd \@one, \@two, \@three; my ( $result, $year, $department ); for my $item (@one) { if ( $item =~ /(^1,)/ ) { $item =~ s/$1//; $year = ( split /,/, $two[0] )[1]; $department = ( split /,/, $three[0] )[1]; $result .= qq($year,$item,$department\n); } if ( $item =~ /(^2,)/ ) { $item =~ s/$1//; $year = ( split /,/, $two[1] )[1]; $department = ( split /,/, $three[1] )[1]; $result .= qq($year,$item,$department\n); } if ( $item =~ /(^3,)/ ) { $item =~ s/$1//; $year = ( split /,/, $two[2] )[1]; $department = ( split /,/, $three[2] )[1]; $result .= qq($year,$item,$department\n); } } #print $result; open my $out, ">", "PPS.csv" || die $!; print $out $result; close $out; __END__ karls-mac-mini:monks karl$ ./ksh.pl karls-mac-mini:monks karl$ cat PPS.csv 2002,Go,Manuel,V.,1/22/2015,8:30AM,5:30PM,1001,IT 2001,Calinisan,Peter,S.,1/22/2015,8:30AM,5:30PM,1002,HR 2003,Sioting,Michael,S.,1/22/2015,8:30AM,5:30PM,1003,PURCHASING

    Update: I skipped the wrapper thing, OK...

    Update2: Actually it isn't "ugly".

    Best regards, Karl

    «The Crux of the Biscuit is the Apostrophe»

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1114420]
Approved by matze77
Front-paged by matze77
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-18 00:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found