Find / Replace multiple lines of code in Eclipse

How do I replace 20+ lines of code JavaScript

in Eclipse? I can find and replace one line at a time, but not multiple lines at once. I need to completely remove this block of code from all of my files:

<!-- /BoldChat Live Chat Button HTML v4.00 --></li>

        <li><a href="index.jsp">Contact Us</a></li>

        <li class="login-mega last"><a href="../user_profile.jsp"></a>
        <div class="login-mega-main">
            <div class="login-options">
            <form id="login" name="j_security_form" action="/public/j_security_check" method="post" accept-charset="UTF-8">
            <strong>Account Login</strong><br>
            Username:<br>
            <input type="text" name="j_username"><br>
            Password:<br>
            <input type="text" name="j_password"><br>
            <br>
            <input type="submit" value="Login"><br>
            <br>
            New users <a href="../user_registration.jsp">register here</a><br>
            <a href="../forgot_password.jsp">Forgot password?</a>
            <input type="hidden" name="auth_mode" value="basic">        
            <script>
            var newloc = document.location.href;
            newloc =newloc.replace('index.jsp','index.jsp');
            document.write('<input type="hidden" name="orig_url" value="'+newloc+'">');
            </script>
            </form>
            </div>
        </div>      
        </li>

      

+3


source to share


1 answer


You have to make sure that the search standard is checked "Regular Expression".

RegExp



When you highlight the item you want to search for, it CTRL+H

displays a search box, and if Reg Exp is installed, Eclipse will automatically generate a regular expression for the search. Then you can replace your filesystem.

+4


source







All Articles