0

如何使用 Eclipse Find/Replace prompt删除仅包含 javadoc 注释的行。
我有以下情况,

/** The panel. */
private JPanel panel;
/** The text field. */
private JTextField textField1;
/** The text field_1. */
private JTextField textField2;
/** The button. */
private JButton button;
/** The combo box. */
private JComboBox comboBox; 

现在我想删除包含/**的整行我应该在eclipse
中使用 什么正则表达式搜索和删除这些行

4

1 回答 1

1
/\*\*.*\r?\n?

/**匹配以包括(如果存在)任何后续换行符开头的整行。

/\*\*.*?\*/

匹配单个评论。

于 2013-02-28T08:33:26.723 回答