Tool to remove JavaDoc comments?

后端 未结 4 892
我寻月下人不归
我寻月下人不归 2020-12-08 12:23

Is there any tool / Eclipse plugin that can remove all JavaDoc comments in a file?

The normal (non-JavaDoc) comments should be intact after

4条回答
  •  有刺的猬
    2020-12-08 12:40

    The answer of Prashant Bhate didn't work for me in eclipse ide:

    /\*\*(?s:(?!\*/).)*\*/
    

    I had to use

    /\*/*(?s:(?!\*/).)*\*/
    

    instead.

提交回复
热议问题