Extract all <li> tags value from a raw html

I have a raw data and following is a portion of it

<strong>You will be asked to answer the following questions when submitting a proposal:</strong></p> <ol class="list-styled mb-0">< li>
      What certifications do you hold?
    </li>< li>
      Have you read, and can you meet all nine job requirements?
    </li></ol></section>

All I want is the value of <li> tags, I am trying with the following code but seems not working:

{{split(get(split(rawData; "You will be asked to answer the following questions when submitting a proposal:"); 1); "</li></ol></section>")}}

Thanks for your support in advance.

Welcome to the Make community!

Please format your text block properly.

  • Either add three backticks ``` before and after the code, like this:

    ```
    content goes here
    ```

  • Or use the format code button in the editor:
    Screenshot_2023-10-02_191027

This will allow others to better assist you. Thanks!

2 Likes