Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8651147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:59:30+00:00 2026-06-12T13:59:30+00:00

I have these lines, that I need to delete the lines that end with

  • 0

I have these lines, that I need to delete the lines that end with “/index.html” (starting from the “< a” tag (two lines before it), and leave the all the other lines as is.

Example:

<a href="http://site.com/dir/file.html">
/dir/file.html</a>: 
../../../index.html<br>
<a href="http://site.com/dir/file2.html">
/dir/file2.html</a>: 
../../../page.html<br>
<a href="http://site.com/dir/name.html">
/dir/name.html</a>: 
../../../index.html<br>
<a href="http://site.com/dir/any-link_.html">
/dir/any-link_.html</a>: 
../../../file-name.html<br>

Output:

<a href="http://site.com/dir/file2.html">
/dir/file2.html</a>: 
../../../page.html<br>
<a href="http://site.com/dir/any-link_.html">
/dir/any-link_.html</a>: 
../../../file-name.html<br>

So the regular expression should delete whatever comes before “/index.html” up until the < a (two lines before it), and leaves the other lines behind.

I was trying something like: ^./index.html in Notepad++, but it deletes only the lines that has “/index.html”, I don’t know how to remove starting from the < a that is before it with 2 lines.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:59:31+00:00Added an answer on June 12, 2026 at 1:59 pm
    <a href="http://site\.com([^"]*\.html)">\s*\1</a>:\s*.*index.html<br>\s*
    

    Matches the <a href="http:site.com literally, followed by the path name, then the end of the tag and all whitespace (including new lines), until a repition of the file name (\1), followed by the close tag, a colon, more white space (again, including a newline), then any number of characters(Except a new line) folowed by index.html<br> then all the whitespace before the next line (Including, again, the newline)

    Could probably be shortened to

    .*\n.*\n.*index.html<br>\n
    

    But beware of .* and it’s unintended side effects. Regular Expressions should always be as specific as possible, especially when using them to delete.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have these lines of javascript code that I need to remove all
I have these two lines in my web.xml <url-pattern>/</url-pattern> : Index Servlet and <url-pattern>/login</url-pattern>
I have a txt file that created in notepad , containing these lines for
I have an XML document that has end times in there, I need to
I have links like these that I want to change: mypage.com?page=missions&id=5 mypage.com?page=hello I tried
I have a div(menubar) that has a lot of links and these links are
Is there a coding standard for HTML? Please suggest links that have the coding
I have these lines in my actionCreate : if (isset($_POST['DpcioCbn'])) { print_r($_POST['DpcioCbn']); $model->attributes =
I have these lines of code in a command line project in VS2010 c++.
I have these lines in my ~/.inputrc : set editing-mode vi set keymap vi

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.