[工具]Python 移除代码注释

参考:编译原理删除C/C++代码中的所有注释

各种语言的注释,在处理代码时,都需要进行移除。
一些简单的办法就是使用字符串不断匹配,然后移除。
稍微能上到理论层面的,能落地的文章,就是 编译原理删除C/C++代码中的所有注释 。后来使用Python重新改写了一遍。在使用中发现不能满足要求,比如[特殊注释]的语法不支持,就新增进去;还有int a = -1;这类的注释,需要把初始值-1去掉,也在代码里面新增了。

使用状态机来处理注释移除问题,可以把此类问题完美解决,扩张性也非常强大。相比于lex + yacc 方案,入门和调整更便利。

备注:支持包含中文的注释。

#coding=utf-8

# quote:

class rmcmnt :
    ### members
    m_type = 'CPP'

    ### contructed function
    def __init__(self, type):
        m_type = type

    ### member function

    # remove code comments
    def removecomment(seft, strInput) :
        state = 0;
        strOutput = ''
        strRemoved = ''

        for c in strInput :
            if state == 0 and c == '/' :        # ex. [/]
                state = 1
            elif state == 1 and c == '*' :      # ex. [/*]
                state = 2
            elif state == 1 and c == '/' :      # ex. [#]
                state = 4
            elif state == 1 :                   # ex. [<secure/_stdio.h> or 5/3]
                print('/')
                state = 0

            elif state == 3 and c == '*':       # ex. [/*he**]
                state = 3
            elif state == 2 and c == '*':       # ex. [/*he*]
                state = 3
            elif state == 2:                    # ex. [/*heh]
                state = 2

            elif state == 3 and c == '/':       # ex. [/*heh*/]
                state = 0
            elif state == 3:                    # ex. [/*heh*e]
                state = 2

            elif state == 4 and c == '\\':      # ex. [//hehe\]
                state = 9
            elif state == 9 and c == '\\':      # ex. [//hehe\\\\\]
                state = 9
            elif state == 9:                    # ex. [//hehe\<enter> or //hehe\a]
                state = 4
            elif state == 4 and c == '\n':      # ex. [//hehe<enter>]
                state = 0

            elif state == 0 and c == '\'':      # ex. [']
                state = 5
            elif state == 5 and c == '\\':      # ex. ['\]
                state = 6
            elif state == 6:                    # ex. ['\n or '\' or '\t etc.]
                state = 5
            elif state == 5 and c == '\'':      # ex. ['\n' or '\'' or '\t' ect.]
                state = 0

            elif state == 0 and c == '\"':      # ex. ["]
                state = 7
            elif state == 7 and c == '\\':      # ex. ["\]
                state = 8
            elif state == 8:                    # ex. ["\n or "\" or "\t ect.]
                state = 7
            elif state == 7 and c == '\"':      # ex. ["\n" or "\"" or "\t" ect.]
                state = 0

            ### new request
            #  []
            elif state == 0 and c == '[':       # ex. [[]
                state = 10
            elif state == 10 and c == ']':      # ex. []]
                state = 11

            # [[]]
            elif state == 10 and c == '[':      # ex. []]
                state = 12
            elif state == 12 and c == ']':      # ex. [[]
                state = 13
            elif state == 13 and c == ']':      # ex. [[]
                state = 14

            # remove character in []
            elif state == 10:                
                state = 10
        
            # remove character in [[]]
            elif state == 12:                
                state = 12
            elif state == 13:                
                state = 13
            # restore state
            elif state == 11:                
                state = 0
            elif state == 14:                
                state = 0

            elif state == 11 and c == ']':     
                state = 14
            elif state == 1 and c == ']':     
                state = 13
        
            elif state == 10:                
                state = 10
            elif state == 12:                
                state = 12

            elif state == 11:                
                state = 13
            elif state == 12:                
                state = 0
            elif state == 13:                
                state = 0

            # remove "=-1" in "int a = -1;"
            elif state == 0 and c == '=':     
                state = 15
            elif state == 15 and c == ';':    
                state = 0

            if (state == 0 and c != '/') or state == 5 or\
                state == 6 or state == 7 or state == 8 :
                strOutput += c
            else:
                # removed chareters
                strRemoved += c

        return strOutput

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,406评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,976评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,302评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,366评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,372评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,457评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,872评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,521评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,717评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,523评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,590评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,299评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,859评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,883评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,127评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,760评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,290评论 2 342

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,081评论 1 32
  • 实验目的:掌握接口的定义及实现,掌握面向接口的编程思想实验内容:1、求任意柱体的体积(面向接口的编程思想)2、动物...
    小石头呢阅读 240评论 0 0
  • 他离开她的身体 冲了个凉擦干水渍 然后正襟危坐说: 我们继续讨论亚里士多德 理想国的未来 三十年后 他又一次离开她...
    楊孜阅读 842评论 0 3
  • 第二十一章 三年后 时光一晃而过,来美国已有三年,赵小深也考到了这边的学校,哥哥赵诚的公司也慢慢走上正轨,...
    书小璇阅读 465评论 5 0
  • 智默堂总部茶事馆门口的舞台上,中日韩三国的表演精采纷至。 不论国籍如何,语言如何,习茶人那平和的面孔,入心的表演都...
    孔雀堂茶号阅读 1,239评论 0 3