0
1

正規表現でJavadoc形式のコメントを通常コメントに戻す

Posted at

はじめに

備忘録です。よしなに。
正規表現を少し調べたのでついでに記事にしました。

環境

  • PleiadesでインストールしたEclipse

概要

本記事では、以下の画像のような形式のJavadocコメントを、

image.png

以下の画像のように変更する正規表現を紹介します。

image.png

方法

検索文字列
\/\*{2}\n[\t ]+\* ([^\n])*\n{1}[\t ]*\*\/

置換文字列
\/\/$1

検索文字列は適宜調整してください。

おわり

ミスがあったら皆様の広い心でお許しください。(修正案をお待ちしてます)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1