- 论坛徽章:
- 84
|
原帖由 arnina 于 2008-7-23 23:08 发表 ![]()
不是的,没有说是c文件啊。
不好意思,想当然了,,
不过这个需求,更适合用词法分析来解决。
思路应该都是一样的,下面是一个删除C注释的awk脚本,可以参考一下
(如果asp注释格式跟C相同的话就可以直接用)
{
#state
#0=normal, 1=in string , 2=in C comm, 3= in C++ comm
for(i=1; i <= length($0); i++)
{
c = substr($0, i, 1)
if (state == 0) {
if (c == "/") {
d = substr($0, i+1, 1)
if (d == "*")
state = 2
else if (d == "/" && c99)
state=3
else
printf("%s", c d)
i=i+2
continue
}
else if (c == "\"")
state = 1
} else if (state == 1) {
if (c == "\"" && substr($0, i-1, 1) != "\\")
state = 0
} else if (state == 2 && i > 1 && substr($0, i-1,2) == "*/") {
state = 0
c = " "
}
if (state < 2)
printf("%s", c)
}
if (state == 3 && !/\\$/)
state = 0
if (state < 2)
print ""
}
参考资源:
http://objectmix.com/awk/26721-awk-code-strip-c-comments-2.html |
|