Search This Blog

Eclipse: remove Java comments

  • remove all /** ... ... */ comments:


    Regular Expression: /\*(?s:(?!\*/).)*\*/
  • remove all /* ... ... */ comments:


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

see also

No comments:

Post a Comment