Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Pattern Match/Trim Variables.

by enoch (Chaplain)
on Feb 17, 2003 at 20:10 UTC ( [id://236094]=note: print w/replies, xml ) Need Help??


in reply to Pattern Match/Trim Variables.

You can replace those 4 substition with one transliteration.
$line =~ tr/\t\n\r"/\x09\x0A\x0D'/;
And, then, since the date format is fixed, just match up until the period.
$line =~ s{ ( # start capturing into $1 [\d|/|\s|:]+ # match digits, # forward slashes, spaces, # or colons 1 or more times ) \. # stop capturing into $1 # when you hit a period \d\d\d} # match three more digits {$1}x; # replace it all w/ $1


enoch

edit: removed the ig options from the tr because they are not necessary (and not even valid) options.

Log In?
Username:
Password:

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

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

    No recent polls found