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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I did not see the requirement that you wanted a script, so, here's how I would do it...

You can use the '-i' switch to edit the file in-place. See perlrun for reference.

If you do not want to create a backup file...

$ perl -ni -e '$match=/::mail(\d+)/;print if!$match||$1>7' data

If you do want to create a backup file with extension '.bak'...

perl -ni.bak -e '$match=/::mail(\d+)/;print if!$match||$1>7' data

This assumes that the file containing the data is named 'data'.

Here's the nuts-and-bolts explanation, skip it if you already know how it works.

Basically, this will check every line to see if it matches the regex, in your case you wanted to match something like /::mail(\d+)/ to capture the digits (please put whatever regexp you need in there, this is untested and for example purposes only). The match operator is used for two purposes, (1) letting us know if it matched, and (2) capturing the digits of interest if it does match. Here, I store the boolean value in $match for later usage. The second statement is the conditional print, which will print the current line if it did not match or if the value of the captured digits is greater than 7.

Please change it according to your needs.

HTH.

--
hiseldl
What time is it? It's Camel Time!


In reply to Re: Cleaner way of looping through a file and stripping only certain lines? by hiseldl
in thread Cleaner way of looping through a file and stripping only certain lines? by texasperl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-16 12:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found