
Hi, All
I'd like to pick up words as following from HTML by using "Parse text".
<li id="Test Series" class="files">
↑just here↑
So I make some regular expressions. But these ways can't pick up what I want to get.
In this situation, please advice me correct ways.
(ex.
^<li id.* class="files">$
.*<li id.* class="files">$
<li\s+id[^>]*?\s+class="files"> ← I looked into this from ChatGPT)
Regards,
I resolved my question while I tried and reconfirm.
ChatGPT showed the correct code.
↓
<li\s+id[^>]*?\s+class="files">
I'm sorry.