/* this is a test
* c file /* with an embedded comment */
* in the middle
*
*/
int main(void)
{
int a;
int b;
}
####
$var =~ s/abc[^xyz]*?def//;
####
/* this is a test
* c file
/* with an embedded
* multiline
* comment
*/
* in the middle
*
*/
int main(void)
{
int a;
int b;
}