Search for commented-out code across files in Eclipse

前端 未结 6 1439
滥情空心
滥情空心 2021-02-08 13:57

Is there a quick way to find all the commented-out code across Java files in Eclipse? Any option in Search, perhaps, or any add-on that can do this?

It should be able to

6条回答
  •  耶瑟儿~
    2021-02-08 14:02

    In Eclipse, I just do a file search with the regular expression checkbox turned on:

    (/\*.*;.*\*/)|(//.*;)
    

    It will find semicolons in

    // These;

    and /* these; */

    Works for me.

提交回复
热议问题