Hi Perl Monk,
I am re-posting the same question but with some changes in the code for which the earlier mentioned solution also dint work
#include <stdio.h>
#include "report.h"
void main()
{
#ifdef CHECK_REPORT
report("This is
good");
reports("This is also
good")
#endif
#if defined (REPORT_ENABLE)
report("This is not good");
#endif
printf("The execution is completed\n");
}
please see in the code report may end with colon or not that is intentional. The output has to be like this
#include <stdio.h>
#include "report.h"
void main()
{
#ifdef CHECK_REPORT
#endif
#if defined (REPORT_ENABLE)
#endif
printf("The execution is completed\n");
}
But the perl code which I have used below
$/ = undef;
$_ = <file1>;
s#\breport[s]?.*? \)\;|("[^"].*?")#defined $1 ? $1 :""#gsiex;
print $_
when the code encounters the line with REPORT_ENABLE then it removes the rest of the code including printf.
From the previous post the solution given was
s# .* report [s]? .* ; .* ##sx;
this works if the report was not in multiple lines. can you suggest what changes I need to do my regex to get the required answer.
Regards,
-Prassi
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|