regex: Parsing html tags in other tags / links and titles
-
File1.html
<ul id="myNavigation"> <li><a href="https://my-website.com/page-1.html" title="Page 1">Page 1 (34)</a></li> <li><a href="https://my-website.com/page-2.html" title="Page 2">Page 2 (29)</a></li> <li><a href="https://my-website.com/page-3.html" title="Page-3">Page 3 (11)</a></li> </ul>
File2.html
<div class="categories-name"> <a href="https://my-website.com/page-66.html" title="Page 66"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 66 <span>27</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-67.html" title="Page 67"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 67 <span>24</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-68.html" title="Page 68"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 68 <span>07</span> </p> </a> </div>
@guy038 @Alan-Kilborn
Thank you. Please understand that finding this solution, was not easy.First, I knew that @guy038 is one of the best REGEX developer on earth. He already gave a solution, in another post, to a PARSING html. so I thought he would succeed.
Second, in another post, someone else gave a solution with PowerShell, of another problem. I remember also that post.
So, I knew that this problem can be resolve, but I had to try both options.
Now, maybe will be a better way to handle regex and files, by integrate notepad++ them into another program such as PowerShell.
-
-
@Alan-Kilborn said in regex: Parsing html tags in other tags / links and titles:
but this is really off-topic for a Notepad++ forum
No, sir. Is an opportunity to understand that a problem has many solution, even if people told you that isn’t possible.
By the way, the same problem can be done in LINUX, much easier…with bash script, but that’s another story.
-
@guy038
result.html
is just a blank file, put in the same folder withFile1.html
andFile2.html
After you run the code in PowerShell, the output result will appear into
result.html
please test the PowerShell code. You will see in
result.html
the structure html from theFile2.html
but with the values extracted fromFile1.html
-
Hi, @robin-cruise,
OK but could you provide the
result.html
file AFTER running thePowershell
script !BR
guy038
Sorry, with my old
XP SP3
machine is a bit out of date ! -
@guy038 this is the
result.html
after run the PowerShell code -
the single problem in PowerShell is that not every regex formulas that works in notepad++ works there. Seems that PowerShell don’t like
\K
or\G
or replacement such as(?2\2)
-
Hello, @robin-cruise, @alan-kilborn and All,
OMG, now I understand the all story ! In fact, you’re did not express your needs correctly, in your first post ! The
File-2.tml
is useless and we just can go from theresult_1.hmtl
file to theresult.html
file !Indeed, in your first post, you said :
<ul id="myNavigation"> <li><a href="https://my-website.com/page-1.html" title="Page 1">Page 1 (34)</a></li> <li><a href="https://my-website.com/page-2.html" title="Page 2">Page 2 (29)</a></li> <li><a href="https://my-website.com/page-3.html" title="Page-3">Page 3 (11)</a></li> </ul>
MUST BECOME:
<div class="categories-name"> <a href="https://my-website.com/page-66.html" title="Page 66"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 66 <span>27</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-67.html" title="Page 67"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 67 <span>24</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-68.html" title="Page 68"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 68 <span>07</span> </p> </a> </div>
can something like this be done with regex?
But… you SHOULD have written :
<ul id="myNavigation"> <li><a href="https://my-website.com/page-1.html" title="Page 1">Page 1 (34)</a></li> <li><a href="https://my-website.com/page-2.html" title="Page 2">Page 2 (29)</a></li> <li><a href="https://my-website.com/page-3.html" title="Page-3">Page 3 (11)</a></li> </ul>
MUST BECOME
<div class="categories-name"> <a href="https://my-website.com/page-1.html" title="Page 1"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 1 <span>34</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-2.html" title="Page 2"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 2 <span>29</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-3.html" title="Page-3"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page-3 <span>11</span> </p> </a> </div>
can something like this be done with regex?
And yes, this transformation can, indeed, be solved with ONE regex S/R only !!!
What misled me was the fact that your output file contained other values than the ones indicated in the initial file ! (
Page 66 <span>27</span>, Page 67 <span>24</span>, Page 68 <span>07</span>...
which are completely out of scope :-(( I vainly looked for a link between, for example, the strings"Page 1">Page 1 (34)
andPage 66 <span>27</span>
!
So, Robin, now, it’s fairly easy to get the right regex S/R !
From this initial text
=========================================================================================================================================== <ul id="myNavigation"> <li><a href="https://my-website.com/page-1.html" title="Page 1">Page 1 (34)</a></li> <li><a href="https://my-website.com/page-2.html" title="Page 2">Page 2 (29)</a></li> <li><a href="https://my-website.com/page-3.html" title="Page-3">Page 3 (11)</a></li> </ul> ===========================================================================================================================================
with the following regex S/R :
SEARCH
(?-i)^\h*<li><a href="https://my\-website.com/(.+?)" title="(.+?)">.+?\((.+?)\)</a></li>|<(ul id="myNavigation"|/ul)>\R
REPLACE
?4:<div class="categories-name">\r\n\x20\x20\x20<a href="https://my-website.com/\1" title="\2">\r\n\x20\x20\x20<p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i>\x20\2\x20<span>\3</span> </p>\r\n\x20\x20\x20</a>\r\n</div>
we do get the expected text, totally identical to your
result.html
contents ! Moreover, you do not need thePowershell
script any more !=========================================================================================================================================== <div class="categories-name"> <a href="https://my-website.com/page-1.html" title="Page 1"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 1 <span>34</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-2.html" title="Page 2"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page 2 <span>29</span> </p> </a> </div> <div class="categories-name"> <a href="https://my-website.com/page-3.html" title="Page-3"> <p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i> Page-3 <span>11</span> </p> </a> </div> ===========================================================================================================================================
Et voilà !
Notes :
-
The groups used are :
-
Group
1
: the part after website.com/ till the double quote, not included -
Group
2
: the title part -
Group
3
: the string between parentheses, before</a>
-
Group
4
: either the literal string<ul id="myNavigation">
or the literal string</ul>
, which must be deleted, in replacement
-
-
Ths regex string
\x20\x20\x20
occurs three times, in the replacement regex, and correspond to the needed leading spaces in each<div ......</div>
section. Changed it as desired !
Best Regards,
guy038
P.S. :
And, if you want to change the lines
<li>.........</li>
, ONLY inside the<ul...............</ul>
sections, use this second regex S/R, derived of the generic regex S/R, discussed in other topics :SEARCH
(?s-i)(?:<ul id="myNavigation">|(?!\A)\G)(?:(?!</ul>).)*?\K^\h*<li><a href="https://my\-website.com/(.+?)" title="(.+?)">.+?\((.+?)\)</a></li>
REPLACE
<div class="categories-name">\r\n\x20\x20\x20<a href="https://my-website.com/\1" title="\2">\r\n\x20\x20\x20<p class="font-16 color-grey text-capitalize"><i class="fa fa-angle-right font-14 color-blue mr-1"></i>\x20\2\x20<span>\3</span> </p>\r\n\x20\x20\x20</a>\r\n</div>
Now, end the job, getting rid of the literal string
<ul id="myNavigation">
and the literal string</ul>
, with, simply :SEARCH
(?-i)<(ul id="myNavigation"|/ul)>\R
REPLACE
Leave EMPTY
We need consecutive regexes S/R because the values
<ul id="myNavigation">
and</ul>
are used as anchors, in the first generic S/R and must not be deleted during the first regex process ! -
-
Hi Guy… it is too funny.
Now, before solving a problem, you have to solve another problem: What the problem actually is!
It’s good that you have the talent and perseverance to do that; well, it’s good for the OP I suppose. -
@guy038 thank you, I knew that you can do it. I believe, you are the best regex developer in the entire word.
I understood one thing. Never say “it can’t be done” and even if it can’t be done in one way, you can always find another way. Be open to another programs.
Much more important: if you give someone a new perspective, that someone will be able to see clearly the problem and to find the solution much easy.
So, my friends. Thanks a lot, from now on I know that many people understood also the power of PowerShell, and it can be used very often to modify files by integrate regex.
-
Hi, @robin-cruise and All,
You said :
I believe, you are the best regex developer in the entire word.
I would say definitively not the best !
For instance, just think of this man here and here.
Jan Goyvaerts
:-
Created the fantastic
regular-expression.info
site and still maintains it ! -
Developed all these valuable regex tools :
PowerGREP
,RegexBuddy
,RegexMagic
andEditPad Pro
This is just an example of the many developers, involved in regular expressions !
BR
guy038
-
-
of course there are others, but only @guy038 helped me and all notepad++ community with so hard to find solutions.
and I am using
notepad++
andgrepWin
(and as for the Batch Process I using a great tool namedTextCrawler
)