2013-02-28 51 views
0

如何刪除只包含javadoc註釋的行,使用Eclipse 查找/替換提示
我有以下情形,如何刪除包含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; 

現在我想刪除包含/**
什麼正則表達式我應該使用日食搜索整個行,並刪除線

+0

如果該行是'/ ** comment */private JCombobox comboBox;'? – 2013-02-28 08:32:08

回答

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

/**包括(如果存在的話)任何以下換行符啓動一個整行匹配。

/\*\*.*?\*/ 

相匹配的單個評論。