Search for commented-out code across files in Eclipse

前端 未结 6 758
难免孤独
难免孤独 2021-02-08 13:23

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:24

    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.

提交回复
热议问题