Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: How to parse this file

by Sewi (Friar)
on Oct 19, 2011 at 15:02 UTC ( [id://932430]=note: print w/replies, xml ) Need Help??


in reply to How to parse this file

Pointing someone into the right direction is better than providing the solution without explanation.

seek and tell are working on the filehandle, you could easily work on a variable after reading the line by using "substr" and maybe "length".

But most of the string manipulation in Perl is done using Perl regular expressions. Don't compare them to POSIX, Javascript or other regular expressions, all of them only have a small subset of the Perl RE's power.

\d is a char class for the numbers from 0 to 9, a basic regex for converting your line might be$line =~ s/[^\d]//g;It won't exactly do what you want (cut out too much), but it should be a good start for you. Try to use the Perl regex documentation to understand the expression shown above. Changing them to something really fitting your needs should be easy once you understood the regex.

For gurus: Yes, there is \D, but ^\d is a better learning start for this problem.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (1)
As of 2024-04-24 14:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found