Jump to content

Add string before closing list


w1ww

Recommended Posts

I've a dynamically generated html list like this one:

 

<ul>
      <li><a href="#">Item 1</a> </li>
      <li>Item 2<ul>
        <li>Item 2.1 <ul>
          <li><a href="#">Item 2.1.1</a> </li>
          <li><a href="#">Item 2.1.2</a> </li>
          <li><a href="#">Item 2.1.3</a> </li>
          <li><a href="#">Item 2.1.4</a> </li>
          <li><a href="#">Item 2.1.5</a> </li>
        </ul></li>
        <li><a href="#">Item 2.2</a> </li>
        <li><a href="#">Item 2.2.1</a> </li>
        <li><a href="#">Item 2.2.2</a> </li>
        <li><a href="#">Item 2.2.3</a> </li>
        <li><a href="#">Item 2.2.4</a> </li>
        <li><a href="#">Item 2.2.5</a> </li>
      </ul></li>
      <li>Item 3 <ul>
        <li><a href="#">Item 3.1</a> </li>
        <li><a href="#">Item 3.1</a> </li>
      </ul></li>
      <li>Item 4 <ul>
        <li><a href="#">Item 4.1</a> </li>
        <li><a href="#">Item 4.2</a> </li>
        <li>Item 4.3 <ul>
          <li><strong class="selflink">Item 4.3.1</strong> </li>
          <li><a href="#">Item 4.3.2</a> </li>
        </ul></li>
      </ul></li>
      <li><a href="#">Item 5</a> <ul>
        <li><a href="#">Item 5.1</a> </li>
        <li><a href="#">Item 5.2</a> </li>
        <li><a href="#">Item 5.3</a> </li>
        <li><a href="#">Item 5.4</a> </li>
        <li><a href="#">Item 5.5</a> </li>
      </ul></li>
    </ul>

 

I need to add another "li" before the last "</ul>".

 

How can I do it? Regex or ..?

 

Thanks in advance :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.