Coming up with the "best" solution depends a lot
on variables like how large the files are, what
kind of performance you need, and how you'll come
up with the new file name. However, here's the
simplest way of solving that (if memory usage and
time are no issues).
use strict;
local $/ = undef; # grab everything from file
open FILE, "my_file" or die $!;
foreach $data_block (split /match_instance/, <FILE>) {
open OUTPUT, "new_file_name" or next;
print OUTPUT $data_block;
close OUTPUT;
}
Note that whatever string we look for ("match_instance"
in this example) will get deleted by the nature of split.
You can enclose match_instance in parenthesis
if you want it included. But then you'll end up with some
array that looks like "match_instance", "data", "match_instance", "more data", etc. So you couldn't use a foreach to
process it.
-Ted
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|