Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Unpack or substr to create CSV?

by karlgoethebier (Abbot)
on May 03, 2015 at 16:20 UTC ( [id://1125518]=note: print w/replies, xml ) Need Help??


in reply to Unpack or substr to create CSV?

AnomalousMonk wrote:

"...but might your maintainer understand substr better?"

I don't know but as no one provided a solution that uses substr, i wrote one:

#!/usr/bin/env perl use strict; use warnings; my @pairs = ( [ 0, 1 ], [ 1, 15 ], [ 16, 14 ], [ 30, 4 ], [ 35, 8 ] ); while ( my $line = <DATA> ) { for my $pair (@pairs) { my $index = $pair->[0]; my $offset = $pair->[1]; print substr $line, $index, $offset; print qq( ); } print qq(\n); } __DATA__ C4432882490H019000020150211ESL6690 0H2015PC C4833076550HC0P0000201412093J46651 0H2015DX C6033106980H057130020150323FRE7602 0H2015PC C663160140MT007015G20141124274847A MT2015PC

Output:

karls-mac-mini:monks karl$ ./substring.pl C 4432882490H0190 00020150211ESL 6690 0H2015PC C 4833076550HC0P0 000201412093J4 6651 0H2015DX C 6033106980H0571 30020150323FRE 7602 0H2015PC C 663160140MT0070 15G20141124274 847A MT2015PC

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: note [id://1125518]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (6)
As of 2024-04-18 13:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found