Hi, and thanks for reading!
This seems like it should be pretty simple to figure out, but I guess don't know enough Perl yet to make it work. I need to find a multi-line string in a text file, delete it, and delete the blank line above it. I'm able to delete the string itself, but not the blank line above it.
The file is structured as follows:
start_of_block {
some_data ;
more_data ;
even_more ;
};
start_of_block {
data ;
};
Here's what I tried:
$/ = "" ;
while (<>) {
s/\nstart_of_block.*?};//s
print ;
}
If I remove the \n from the beginning of the pattern, the block is deleted, but of course the newline remains. With the \n in place, the match simply fails.
Any pointers?
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.