Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

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

The line-processing approach above unfortunately does almost exactly the opposite of what you want, unless I'm tireder than I thought. The problem you're going to have is that you aren't (or at least, you haven't mentioned that you are) reading a record-based file, so no matter what size chunk you read in, unless you read the whole file into a scalar, you run the risk that you'll have a string that begins in one read and ends in another. There are a few ways to deal with this, but for the moment I'm going to pretend you can read the whole file in as a single string, because it will make my life easier. In that case, this should do roughly what you want (and precisely what you specified):

undef $/; $_ = <>; s/(\x31\x33\x39\x37[^\x00]*\x00)/"\x00" x length $1/ge; print;

There's almost certainly a better way to do that regex, but I'm reasonably sure that this one will in fact work, however inelegantly.

If you can't process the file all at once, then you will have to get creative. I'd think this would work:

$/ = \4096; my $flag = 0; while (<>) { if ($flag) { # ended previous chunk in mid-substitution s/(^[^\x00]*(\z|\x00))/"\x00" x length $1/ge; } s/(1379[^\x00]*(\z|\x00))/"\x00" x length $1/ge; $flag = length $2 ? 0 : 1; # this could be readily golfed, I real +ize }

Note that it is late and I'm not testing this code, so it is by no means 100% guaranteed not to sneeze demons at you. That said, it really ought to work fine. :-)



If God had meant us to fly, he would *never* have given us the railroads.
    --Michael Flanders


In reply to Re: Searching a file for an undetermined hexadecimal string by ChemBoy
in thread Searching a file for an undetermined hexadecimal string by Anonymous Monk

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 pondering the Monastery: (7)
As of 2024-04-19 10:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found