Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Fixed Position Column Records

by daseme (Beadle)
on Jul 22, 2007 at 03:23 UTC ( [id://628064]=note: print w/replies, xml ) Need Help??


in reply to Fixed Position Column Records

Thank you grep and BrowserUk.
below is a replacement for my first foreach statement which works better than my original code thanks to the suggestion by grep.
my $f2 = $pos[1] - $pos[0]; my $f3 = $pos[2] - $pos[1]; my $f4 = $pos[3] - $pos[2]; my $f5 = $pos[4] - $pos[3]; foreach $line (@data) { my $pictureline = "a$pos[0] a$f2 a$f3 a$f4 a$f5"; print unpack( $pictureline, $line ), "\n"; }
And thank you again BrowserUk for a more elegant solution altogether.

Replies are listed 'Best First'.
Re^2: Fixed Position Column Records
by BrowserUk (Patriarch) on Jul 22, 2007 at 04:49 UTC

    Posted here to ensure it comes to the OPs attention.

    Replace the regex used by the pattern building code with

    while $mask =~ m[([^ ]+)( +|$)]g;

    That is, replace \S and \s with literal spaces as the ORing process can generate chr(9) and other characters that would be treated as whitespace and so create false columns.


    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://628064]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (2)
As of 2024-04-26 03:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found