如何使用 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
中使用
什么正则表达式来搜索和删除这些行?