-1

我已将 C/C++ 程序文件读入数组,现在我想从数组中删除所有注释CC++样式,包括multilinecommnts。如何使用数组来做到这一点。

这就是我将文件读入数组的方式。

open( FILE, $fname ) or die "Can't open $fname: $!";
my @lines = <FILE>;
close(FILE);
4

2 回答 2

3

It's explain in perlfaq6:How-do-I-use-a-regular-expression-to-strip-C-style-comments-from-a-file

于 2012-08-02T12:10:05.453 回答
0

请参考Mastering Regular Expression 3rd chapter 6,您将获得最佳解决方案。

于 2012-08-02T11:03:37.947 回答