I've got about 200 Java files and I want to remove the following line within eclipse all over the 200 files:
public static final String ID = "@(#) $Id: LoginView.java 457 2015-10-26 12:52:10Z $";
The varibale content in this line is @(#) $Id: LoginView.java 457 2015-10-26 12:52:10Z $
How can I search for all of the lines and delete them?
What to do, if I have a commentary e.g.
//*****************************************************************************
//
// Copyright (c) 2015
// All rights reserved
//
// The contents of this file is an unpublished work protected.
//
// This software is proprietary to and emboddies confidential
// technology of abc. Possession, use and copying
// of the software and media is authorized only pursuant to a
// valid written license. This copyright
// statement must be visibly included in all copies.
//
//*****************************************************************************
//*****************************************************************************
//
// $Revision: 457 $ ($Date: 2015-10-26 13:52:10 +0100 (Mo, 26 Okt 2015) $)
//
// filename : LoginView.java
//
// contents :
//
//*****************************************************************************
The variable content is the last part and here it is the same: I want to remove the WHOLE commentary in eclipse in each file.
How to achieve this?