如何在Eclipse中替换20多行JavaScript
代码?我可以一次查找并替换一行,但不能同时替换多行。我需要从我的所有文件中完全删除这段代码:
<!-- /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>
答案 0 :(得分:4)
你必须确保&#34;正则表达&#34;在搜索条件中检查。
当您突出显示要搜索的项目时,CTRL+H
将显示搜索窗口,如果选中Reg Exp,则Eclipse会自动创建要搜索的正则表达式。然后您可以在文件系统中替换。