Community
    • Login

    Regex: Find those files that doesn't contain the same link in 2 different html tags

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    30 Posts 5 Posters 1.7k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Hellena CrainicuH
      Hellena Crainicu
      last edited by Hellena Crainicu

      good day. Is if possible using regex to find those files that doesn’t contain the same link in 2 different html tags. I have more then 100 html files.

      I have 2 links:

      https://mywebsite.com/en/truth.html and https://mywebsite.com/en/love.html in two different html tags.

      <meta property="og:url" content="https://mywebsite.com/en/truth.html"/>
      
      text text
          
      text
      
      <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/love.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
      

      I use this formula, but isn’t working. It finds both link, even if those are the same. I should find the files that doesn’t contain the same link up and down.

      FIND: (.matches newline)

      (<link rel="canonical" href="(.*?)" \/>.*?)(?!(alt="de" /></a>&nbsp; <a href=")).*?("><img src)

      To explain my formula:

      This can find the first link from the meta tag: (<link rel="canonical" href="(.*?)" \/>.*?)

      This can find the second link from <img tag: (alt="de" /></a>&nbsp; <a href=").*?("><img src)

      and I use ?! to exclude the second link.

      1 Reply Last reply Reply Quote 0
      • Terry RT
        Terry R
        last edited by Terry R

        @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

        I should find the files that doesn’t contain the same link up and down

        I looked at your example data and that doesn’t appear to match what your regex is looking for (you had “link rel=canonical” mentioned). However I decided that your example data is what I would try to work with.

        I think it will be very difficult to achieve what you want and actually there is probably an easier method by breaking down the process into multiple steps, 2 actually.

        So my solution means we will be editing the files somewhat so it should be done on a copy of the html files. I hope I have understood enough from your original post to provide some useful information, if not then you need to elaborate (such as whether the example data was a "good’ set or “bad” set).

        The first step is to remove all line feeds except the ones starting a group, which I believe starts with the “meta property” tag.
        So using the “Find in Files” function we have:
        Find What:\R(?!<meta)
        Replace With: empty field here
        What this does is allow us the ability to limit the search within 1 line. If we went with your idea of crossing multiple lines the regex will “attempt” to find a match, and will therefore try to expand it’s search into the next group.

        The second step is to compare the 2 https references on each line, to locate lines where there are differences. So my assumption (from your example data) is that there are ONLY 2 https references for each group.
        Find What:(?-s)(.+?https://([^"]+))(?=.+?https)(?!.+?\2)
        The Replace With field is empty as we are only using the “Find All” button to search the files. Set the Filters and folder (also sub folder option) as appropriate. After clicking the “Find All” button the search window will show which files have what you seek, mismatching https references for any group. Line number is also shown although this won’t match the original file.

        If you require some descriptions of what my second regex is doing please ask. I haven’t provided that as it does seem that you have some good regex knowledge already.

        Terry

        Hellena CrainicuH 1 Reply Last reply Reply Quote 1
        • Hellena CrainicuH
          Hellena Crainicu
          last edited by

          buy the way, my mistake. I cannot edit again the post.

          Instead of <meta property="og:url" content="https://mywebsite.com/en/truth.html"/> should be <link rel="canonical" href="https://mywebsite.com/en/truth.html" />

          1 Reply Last reply Reply Quote 0
          • Hellena CrainicuH
            Hellena Crainicu
            last edited by

            also, I try this regex: (<link rel="canonical" href="(.*?)" \/>.*?)(?!(alt="de" /></a>&nbsp; <a href=")).*?(\2)("><img src)

            But this will find only the file that contain the same link on both tags. But I should find the files that doesn’t contain the same link

            1 Reply Last reply Reply Quote 0
            • Terry RT
              Terry R
              last edited by

              @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

              buy the way, my mistake. I cannot edit again the post.

              Hence my confusion. So straight away we have a problem, but it is only a small one. So my first regex should change to \R(?!<link rel).

              Terry

              1 Reply Last reply Reply Quote 0
              • Hellena CrainicuH
                Hellena Crainicu @Terry R
                last edited by

                @Terry-R said in Regex: Find those files that doesn’t contain the same link in 2 different html tags:
                (?-s)(.+?https://([^"]+))(?=.+?https)(?!.+?\2)

                @Terry-R your regex is not working

                1 Reply Last reply Reply Quote 0
                • Terry RT
                  Terry R
                  last edited by

                  @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                  @Terry-R your regex is not working

                  It worked for me in a small test, see:
                  664c23c8-7a1a-45a9-8d5d-d7f22901a011-image.png

                  Note I had 2 “groups”, one with matching https references, the other mismatching. It finds the mismatch and then states the end of the document has been reached signifying no further occurrences. If there were further occurrences it doesn’t show this statement.

                  So not sure why your attempt failed. Does you real data not match the example, or do you have more then 2 https references for each group. Was it my first regex that failed or second. Try the solution on just 1 file inside of notepad++ so you can monitor it’s progress by using “Find” rather than replace for some steps.

                  Terry

                  1 Reply Last reply Reply Quote 0
                  • Hellena CrainicuH
                    Hellena Crainicu
                    last edited by Hellena Crainicu

                    @Terry-R said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                    (?-s)(.+?https://([^"]+))(?=.+?https)(?!.+?\2)

                    yes, Terry. Your regex seems to be good, but only if I make the replacement. Now, if I have several html files, I cannot make that replacement just to find something. It will ruin my html code.

                    And, by the way. you have 2 meta property. i don’t have any in my example :)

                    1 Reply Last reply Reply Quote 0
                    • Terry RT
                      Terry R
                      last edited by Terry R

                      @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                      It will ruin my html code.

                      It seems you missed my statement that as we will be editing the files, you need to work on “copies” of the files:
                      So my solution means we will be editing the files somewhat so it should be done on a copy of the html files.

                      Terry

                      PS I realise my image showing it working has meta property, but the regexes don’t use that now as I stated replace first regex with your amended detail “link…”
                      The second regex doesn’t use that either so it isn’t affected by your change in example data.

                      1 Reply Last reply Reply Quote 0
                      • Hellena CrainicuH
                        Hellena Crainicu
                        last edited by Hellena Crainicu

                        @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                        y the way. you have 2 meta property. i don’t have any in my example :)

                        By the way. you have 2 meta property. i don’t have any in my example :)

                        <link rel="canonical" href="https://mywebsite.com/en/truth.html" />
                        
                        text text
                            
                        text
                        
                        <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/trsuth.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                        
                        1 Reply Last reply Reply Quote 0
                        • Terry RT
                          Terry R
                          last edited by Terry R

                          @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                          I should find the files that doesn’t contain the same link up and down.

                          I may have found a way to search the html files without having to edit them. Even better is the “Find in Files” search result window will give precise locations as to filename and line number where you need to fix the problems of mismatched https references.

                          It uses some advanced regex functions only available to Notepad++ since version 7.7. Read the excellent postings by @guy038 here.

                          In this solution I make use of the (*SKIP) function. The regex is:
                          (?s)^<link rel.+?https://([^"]+).+?https://(*SKIP)(?!\1)
                          So for a description we have the regex:

                          1. finding a line starting with <link rel
                          2. advancing character by character (lazy) until the first https:// sequence is found, then capturing it
                          3. continuing to capture characters so long as they are NOT the ". This is captured as group 1.
                          4. advancing character by character (lazy) until the next (second) https:// sequence is found, then capturing it
                          5. this is where the fun begins. At this point it can advance to the next sub expression within the regex, the (*SKIP) is passed over going forward with no reaction. The next step is a test that the next few characters do NOT match the first https reference (group 1). Normally if this test fails, the regex will backtrack and attempt to consume more characters until this sub-expression is TRUE. That would normally mean progressing into the next group of link rel... With the (*SKIP) if the regex attempts to backtrack this prevents the backtrack from occurring and thus the regex fails overall.

                          So the use of (*SKIP) only allows the 2nd https reference to be tested against the first. A mismatch means success, a match would mean the regex fails and it restarts at the next group of link rel....

                          Hopefully I have this described correctly and also hopefully it will satisfy your initial request without the need to edit copies.’

                          It did work on an open file I had with 5 groups, 3 of which had the mismatch and they were all correctly identified.

                          So the major assumption is that your group (starting with <link rel and ending just before the next <link rel starts) has at least 2 https references and where the test is between the first and second https reference ONLY!

                          Best of luck, I’d be very interested in knowing if this works for you with real world data so please do post back, good or bad. This is my first attempt at using (*SKIP).

                          Terry

                          1 Reply Last reply Reply Quote 3
                          • guy038G
                            guy038
                            last edited by guy038

                            Hello, @hellena-crainicu, @terry-r and All,

                            I don’t think that working on copies is necessary ;-)) So, Hellena, simply use this regex :

                            SEARCH (?s)<link\h+rel="canonical"\h*\Khref="([^"]+)".+<a href="(?!\1).+?"


                            Notes :

                            • The \h syntax is equivalent to the [\t\x20\xA0] syntax

                            • The group 1 is the regex [^"]+ and represents the link ••••• in the expression <link rel="canonical" href="•••••" />

                            • Due to the <a href="(?!\1).+?", this link must not be present in the href atttribute of the <a> tag

                            • The \K feature cancels the match attempt so far ( <link\h+rel="canonical"\h* ) and resets the working position of the regex engine at the word href. So, the overall regex will catch the range of chars between the first href="•••••" expression and the last href="•••••", only !


                            Finally, the main problem was to be sure that the range of chars, between the two double-quotes of the first link, does end at the closing double-quote and not later, because of the internal backtracking process of the regex engine !

                            For instance, let’s suppose this text, with the same link test.com

                            href="test.com" test="value" href="test.com"
                            

                            Oddly, the regex (?-si)href="(.+?)".+href="(?!\1).+?" matches this text. The common sense tells that it shouldn’t as we have the negative look-ahead (?!\1) structure !?

                            So why ? Let’s try to follow the regex engine process !

                            • First the regex engine matches the href=" string and catches the shortest range of chars till a double-quote so the value test.com is stored in group 1

                            • Then, it matches the part .+href=". But, as the second link is the same as the first one, the negative look-ahead, which follows, prevent from matching the remainder range of chars

                            • Now, that’s the important point : the regex engine backtracks and try, by all means, to get a positive match attempt !

                              • The regex engine moves back to the location right after the first href=" string and catches an other shortest range of chars till a double-quote. Thus, this time, the value test.com" test="value is stored as group 1 ! Indeed that text is embedded between " !

                              • Then, again, it matches the part .+href=". And, now, as the second link test.com is obviously different from the contents of the group 1** ( test.com" test="value ) the negative look-ahead returns TRUE and the overall regex wrongly matches the complete text href="test.com" test="value" href="test.com"

                            • We now understand the way to get the right regex. We just need to avoid that each char between double-quotes may be, themselves, a " char !

                            • So, the second regex version (?-si)href="([^"]+)".+href="(?!\1).+?", as expected, does not find the text

                            href="test.com" test="value" href="test.com"
                            

                            And would get this one !

                            href="test.com" test="value" href="tests.com"
                            

                            Best Regards,

                            guy038

                            1 Reply Last reply Reply Quote 0
                            • Terry RT
                              Terry R
                              last edited by

                              @guy038 said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                              SEARCH (?s)<link\h+rel=“canonical”\h*\Khref=“([^”]+)“.+<a href=”(?!\1).+?"

                              I used the below example set for my test and got the 3 mismatch hits I created. When I ran your regex on my example set I only got 1 hit. I think I see where your interpretation differed from mine. I did not know for sure there would ONLY be 2 https references in each file, the OP wasn’t specific enough. Now that I see your interpretation I can see that the OP may have suggested that. So certainly if that’s the case I have definitely overworked my regex.

                              Cheers
                              Terry

                              <link rel="canonical" href="https://mywebsite.com/en/truth.html"/>
                              
                              text text
                                  
                              text
                              
                              <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/love.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                              <link rel="canonical" href="https://mywebsite.com/en/ttt.html"/>
                              
                              text text
                                  
                              text
                              
                              <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/ttt.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                              <link rel="canonical" href="https://mywebsite.com/en/truth.html"/>
                              
                              text text
                                  
                              text
                              
                              <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/sloven.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                              
                              <link rel="canonical" href="https://mywebsite.com/en/lovel.html"/>
                              
                              text text
                                  
                              text
                              
                              <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/lovely.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                              
                              <link rel="canonical" href="https://mywebsite.com/en/lov.html"/>
                              
                              text text
                                  
                              text
                              
                              <img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/en/lov.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                              
                              Terry RT 1 Reply Last reply Reply Quote 0
                              • guy038G
                                guy038
                                last edited by guy038

                                Hi, @hellena-crainicu, @terry-r and All,

                                Reading the Terry’s post made me think that I had not considered the possibility of successive couples <link rel="canonical" href=" – <a href=" in a same HTML file !

                                For instance, against the text :

                                <link rel="canonical" href="https://mywebsite.com/en/truth.html"
                                
                                text text
                                
                                <a href="https://mywebsite.com/en/truth.html"
                                
                                text
                                
                                
                                text
                                
                                
                                <link rel="canonical" href="https://mywebsite.com/en/love.html"
                                
                                text text
                                
                                <a href="https://mywebsite.com/en/love.html"
                                

                                My previous regex would wrongly match all text after <link rel="canonical". Indeed, as each couple of links are identical ( 2 × truth and 2 × love ), I suppose, @Hellena-crainicu, that you do not want a match, in that specific case, too !


                                So, @hellena-crainicu, prefer this second version, more robust !

                                SEARCH / MARK (?s)<link\h+rel="canonical"\h*\Khref="([^"]+)"((?!<link).)+?<a href="(?!\1).+?"

                                As you can see, the changed part is ((?!<link).)+? which represents the shortest range of characters, not containing the string <link, at any position, globally, between the first and last href attribute !

                                BR

                                guy038

                                1 Reply Last reply Reply Quote 1
                                • Terry RT
                                  Terry R @Terry R
                                  last edited by

                                  @Terry-R said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                                  I did not know for sure there would ONLY be 2 https references in each file, the OP wasn’t specific enough.

                                  I note that I did show the OP a previous test I did which had 3 sets i tested against (image). The OP did not mention at that time that he only had 1 set in each file, guess we need the OP to verify if ONLY 1 set in each html file or MANY!

                                  So @Hellena-Crainicu does each html file contain only 1 set of https references (so 2 https references in each file) or many sets that the test must be carried out on.

                                  Terry

                                  1 Reply Last reply Reply Quote 2
                                  • Hellena CrainicuH
                                    Hellena Crainicu
                                    last edited by

                                    This post is deleted!
                                    1 Reply Last reply Reply Quote 0
                                    • Hellena CrainicuH
                                      Hellena Crainicu
                                      last edited by Hellena Crainicu

                                      now I see, there is a small problem.

                                      @Terry-R Your regex seems to be good on my example: (?s)^<link rel.+?https://([^"]+).+?https://(*SKIP)(?!\1) find only the files whose links are different.

                                      @guy038 Your regex, also, it is good on my example: (?s)<link\h+rel="canonical"\h*\Khref="([^"]+)"((?!<link).)+?<a href="(?!\1).+?"

                                      But, I put that TEXT TEXT between those 2 tags, that means that those links can be find more than twice. For this reason we have specified exactly the lines to be considered. Please see the entire code I have:

                                      <link rel="canonical" href="https://mywebsite.com/en/truth.html" />
                                      
                                      <meta name="copyright" content="me, https://mywebsite.com/"/>
                                      <link rel="sitemap" type="application/rss+xml" href="rss.xml" /> 
                                      <link rel="image_src" type="image/jpeg" href="https://mywebsite.com/icon-facebook.jpg" style="display:none"/>    
                                      <meta itemprop="image" content="https://mywebsite.com/icon-facebook.jpg"/>
                                      <meta property="og:image" content="https://mywebsite.com/icon-facebook.jpg"/>
                                      <meta property="og:type"  content="article" />
                                      <meta property="fb:app_id" content="2156440"/>
                                      <meta property="fb:admins" content="16454242"/>
                                      <meta property="og:url" content="https://mywebsite.com/en/other-car.html"/>
                                      
                                      <body>
                                      
                                      TEXT TEXT
                                      
                                      <div class="search">
                                                      <div align="left">
                                      
                                                        <a href="https://mywebsite.com/hope.html"><img src="index_files/flag_lang_ro.jpg" title="ro" alt="ro" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/fr/book.html"><img src="index_files/flag_lang_fr.jpg" title="fr" alt="fr" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/en/truth.html"><img src="index_files/flag_lang_en.jpg" title="en" alt="en" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/es/green.html"><img src="index_files/flag_lang_es.jpg" title="es" alt="es" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/pt/yellow.html"><img src="index_files/flag_lang_pt.jpg" title="pt" alt="pt" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/ar/truth.html"><img src="index_files/flag_lang_ae.jpg" width="28" height="19" title="ar" alt="ar" /></a>&nbsp; <a href="https://mywebsite.com/zh/truth.html"><img src="index_files/flag_lang_zh.jpg" width="28" height="19" title="zh" alt="zh" /></a>&nbsp; <a href="https://mywebsite.com/hi/truth.html"><img src="index_files/flag_lang_hi.jpg" width="28" height="19" title="hi" alt="hi" /></a>&nbsp; <a href="https://mywebsite.com/de/truth.html"><img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/ru/truth.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                                      
                                      TEXT TEXT
                                      
                                      
                                      <div id="pixxell"> <a href="https://mywebsite.com/en/book-miracle.html">I find a miracle </div>
                                      
                                      TEXT TEXT
                                      
                                      1 Reply Last reply Reply Quote 0
                                      • Hellena CrainicuH
                                        Hellena Crainicu
                                        last edited by

                                        so, the second tag <img src=...> is extracted from the <div class="search"> section. Must be taken into account this part.

                                        Terry RT 1 Reply Last reply Reply Quote 0
                                        • guy038G
                                          guy038
                                          last edited by guy038

                                          Hi, @hellena-crainicu, @terry-r and All,

                                          I’m really sorry but I still don’t understand what is your goal !

                                          • First, my last regex (?s)<link\h+rel="canonical"\h*\Khref="([^"]+)"((?!<link).)+?<a href="(?!\1).+?", unlike you said, does not match anything against your last text, even if I remove the parts TEXT TEXT !? Anyway, I don’t care about it as the next regex version will surely be very different !

                                          Now, the important points are :

                                          • Firstly : Does the HTML text that you provided, and which is repeated, below, represents a real part of you HTML files ?
                                          <link rel="canonical" href="https://mywebsite.com/en/truth.html" />
                                          
                                          <meta name="copyright" content="me, https://mywebsite.com/"/>
                                          <link rel="sitemap" type="application/rss+xml" href="rss.xml" /> 
                                          <link rel="image_src" type="image/jpeg" href="https://mywebsite.com/icon-facebook.jpg" style="display:none"/>    
                                          <meta itemprop="image" content="https://mywebsite.com/icon-facebook.jpg"/>
                                          <meta property="og:image" content="https://mywebsite.com/icon-facebook.jpg"/>
                                          <meta property="og:type"  content="article" />
                                          <meta property="fb:app_id" content="2156440"/>
                                          <meta property="fb:admins" content="16454242"/>
                                          <meta property="og:url" content="https://mywebsite.com/en/other-car.html"/>
                                          
                                          <body>
                                          
                                          TEXT TEXT
                                          
                                          <div class="search">
                                                          <div align="left">
                                          
                                                            <a href="https://mywebsite.com/hope.html"><img src="index_files/flag_lang_ro.jpg" title="ro" alt="ro" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/fr/book.html"><img src="index_files/flag_lang_fr.jpg" title="fr" alt="fr" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/en/truth.html"><img src="index_files/flag_lang_en.jpg" title="en" alt="en" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/es/green.html"><img src="index_files/flag_lang_es.jpg" title="es" alt="es" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/pt/yellow.html"><img src="index_files/flag_lang_pt.jpg" title="pt" alt="pt" width="28" height="19" /></a>&nbsp; <a href="https://mywebsite.com/ar/truth.html"><img src="index_files/flag_lang_ae.jpg" width="28" height="19" title="ar" alt="ar" /></a>&nbsp; <a href="https://mywebsite.com/zh/truth.html"><img src="index_files/flag_lang_zh.jpg" width="28" height="19" title="zh" alt="zh" /></a>&nbsp; <a href="https://mywebsite.com/hi/truth.html"><img src="index_files/flag_lang_hi.jpg" width="28" height="19" title="hi" alt="hi" /></a>&nbsp; <a href="https://mywebsite.com/de/truth.html"><img src="index_files/flag_lang_de.jpg" width="28" height="19" title="de" alt="de" /></a>&nbsp; <a href="https://mywebsite.com/ru/truth.html"><img src="index_files/flag_lang_ru.jpg" width="28" height="19" title="ru" alt="ru" /></a>
                                          
                                          TEXT TEXT
                                          
                                          
                                          <div id="pixxell"> <a href="https://mywebsite.com/en/book-miracle.html">I find a miracle </div>
                                          
                                          TEXT TEXT
                                          
                                          • Secondly : If so, I suppose that the first line <link rel="canonical" href="https://mywebsite.com/en/truth.html" /> with the link https://mywebsite.com/en/truth.html is the first of the two links to consider in the future ( correct ! ) regex

                                          • Thirdly : I also suppose that any of the links, below, after <div class="search">, and which are followed with an <img src=•••••> tag are taken as a second link to be considered in the future regex

                                          href="https://mywebsite.com/hope.html">
                                          href="https://mywebsite.com/fr/book.html">
                                          href="https://mywebsite.com/en/truth.html">
                                          href="https://mywebsite.com/es/green.html">
                                          href="https://mywebsite.com/pt/yellow.html">
                                          href="https://mywebsite.com/ar/truth.html">
                                          href="https://mywebsite.com/zh/truth.html">
                                          href="https://mywebsite.com/hi/truth.html">
                                          href="https://mywebsite.com/de/truth.html">
                                          href="https://mywebsite.com/ru/truth.html">
                                          

                                          Fourthly : As the tag <link rel="canonical"••••" /> contains the link href="https://mywebsite.com/en/truth.html, I suppose that, considering the list of links, above, you would like that the regex matches :

                                          • FROM the expression <link rel="canonical" href="https://mywebsite.com/en/truth.html" /> or, at least, its link href="https://mywebsite.com/en/truth.html"

                                          • TO the first link different from href="https://mywebsite.com/en/truth.html", so, in this example, the first link of the list href="https://mywebsite.com/hope.html">


                                          As you can see, it’ is generally much more difficult to fully understand what are the OP’s needs than finding out any kind of regex ;-))

                                          BR

                                          guy038

                                          1 Reply Last reply Reply Quote 2
                                          • Terry RT
                                            Terry R @Hellena Crainicu
                                            last edited by

                                            @Hellena-Crainicu said in Regex: Find those files that doesn't contain the same link in 2 different html tags:

                                            so, the second tag <img src=…> is extracted from the <div class=“search”> section

                                            So hopefully you now understand providing us the most accurate information possible is key to getting a workable solution.

                                            With my regex I think all you need to add is </a>&nbsp; <a href=" directly in front of the second https string. I’m not on a PC currently, instead typing on a smartphone. But if you can try adding these characters I think my regex will work. It’s all a matter of getting the regex to consume characters up until the https tag we wish to check against. This adjustment should get you there. That is unless there are other nbsp in between. But then your own regex was using the nbsp as well so I feel confident.

                                            Terry

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post
                                            The Community of users of the Notepad++ text editor.
                                            Powered by NodeBB | Contributors