Community
    • Login

    How to bookmark lines around a line containing a specific expression 'XXX' ?

    Scheduled Pinned Locked Moved General Discussion
    31 Posts 6 Posters 6.4k 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.
    • PeterJonesP
      PeterJones @sam rathod
      last edited by PeterJones

      @sam-rathod said in How to bookmark lines around a line containing a specific expression 'XXX' ?:

      This is the error that it is showing after entering the regex command:

      That’s an exeedingly fuzzy screenshot.
      3492b2f6-8569-4ac7-a3a9-cff5dfa764b0-image.png
      But to me, that looks a lot more like (.*\R}{10}^.*ignored.*\R instead of (.*\R){10}^.*ignored.*\R – the first group is accidentally closed by a curly-brace } instead of a close-parenthesis ). Assuming that fuzzy character really is }, I can replicate your error; and if I hover over the ... in the error message, it tells me exactly what’s gone wrong with the expression:
      faf7ceca-84f5-4d1c-b78f-463aa4d851a0-image.png

      If it’s actually something else wrong with yours, that ... hover will help you diagnose it.

      But either way, if I enter the regex that you claimed to use, rather than the one that your fuzzy screenshot shows, it just shows that it’s not finding text, not that there was an error in the regex.

      2f4372d8-d9ec-485a-86d0-6d75d991254e-image.png

      I tried attaching files but i am unable to.

      That’s not the right way of sharing data, as has been explained in the FAQs about formatting example text and the template for search/replace questions. Those FAQs show how to format your text so that it appears in the copyable text box (which is how I changed your original post using moderator powers to show the data in the text box – I will actually go back and remove the extra line endings, which may have been accidentally introduced when I did the first edit).

      When i use the expression that you said you were using, on the data that you had in your post, I match almost what your followon post said you wanted to match:

      606b245c-6f7e-4620-b960-481276681591-image.png

      The reason it doesn’t match everything is because you said you wanted 10 lines before the “ignored” line… but your screenshot with manual highlight shows that you actually wanted 12 lines before the “ignored” line, so you just need to change the count from {10} to {12} …

      And, as your regex uses ignored but your actual text is IGNORED, and as we want to make sure that the . from the first capture group doesn’t match newlines, the final regex you should use is
      FIND WHAT = (?i-s)(.*\R){12}^.*ignored.*\R – as shown below, this matches what you say you want to match.

      4383f782-17e9-4e4b-8544-b9257dca3ada-image.png

      sam rathodS 1 Reply Last reply Reply Quote 1
      • sam rathodS
        sam rathod @mkupper
        last edited by

        @mkupper said in How to bookmark lines around a line containing a specific expression 'XXX' ?:

        (?-i)^(?: +*+ [A-Z][A-Z0-9 ]+ *+\R)(?:.*\R){1,25}(?: +*{4} WARNING - THE REMAINING +[0-9]+ INCREMENT(S) OF THE LOAD STEP WILL BE IGNORED)$

        This did the wonder, thanks for the help man on my own i would never been able to figure this out. I am new to notepad++ will appreciate if you can share some learning material to start from basics.

        Thanks a Lot.

        Regards,
        Aaditya

        1 Reply Last reply Reply Quote 0
        • sam rathodS
          sam rathod @PeterJones
          last edited by

          @PeterJones said in How to bookmark lines around a line containing a specific expression 'XXX' ?:

          (?i-s)(.*\R){12}^.ignored.\R

          The screenshot looks fuzzy but i had entered the same equation that was been mentioned by @guy038.

          Will go through the FAQs for sharing data and will understand how to post on this.

          I tried the final Regex :

          (?i-s)(.*\R){12}^.*ignored.*\R
          

          27da62cf-3dc0-462b-aa57-00c5e2c74694-image.png

          Thanks for actively resolving the issue i was facing, will appreciate if u can share some learning material to start from the basics.

          Thanks & Regards,
          Aaditya

          Alan KilbornA 1 Reply Last reply Reply Quote 0
          • Alan KilbornA
            Alan Kilborn @sam rathod
            last edited by

            @sam-rathod said in How to bookmark lines around a line containing a specific expression 'XXX' ?:

            will appreciate if u can share some learning material to start from the basics

            A good starting point is HERE.

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

              Hello, @sam-rathod, @peterjones, @mkupper, @alan-kilborn and All,

              I suppose that dealing with files with important size may lead to this regex message, even if this regex does work properly with small files :-((

              So, @sam-rathod, could you try with this new regex version :

              SEARCH/MARK (?-is)^(?:.*\R){12}.*IGNORED.*\R

              Best Regards,

              guy038

              1 Reply Last reply Reply Quote 1
              • sam rathodS
                sam rathod
                last edited by sam rathod

                Hello,

                If i have range of text for example

                "This is the specific text in the document that i will search"
                Line1 that dont want marked
                Line2 that dont want marked
                
                Line3 that dont want marked
                
                Line 1 want to mark
                Line 2 want to mark
                Line 3 want to mark
                Line 4 want to mark
                Line 5 want to mark
                
                ""This is the specific text in the document that i will search"
                Line1 that dont want marked
                Line2 that dont want marked
                
                Line3 that dont want marked
                
                Line 6 want to mark
                Line 7 want to mark
                Line 8 want to mark
                Line 9 want to mark
                Line 10 want to mark
                

                The output i am expecting

                Line 1 want to mark
                Line 2 want to mark
                Line 3 want to mark
                Line 4 want to mark
                Line 5 want to mark
                Line 6 want to mark
                Line 7 want to mark
                Line 8 want to mark
                Line 9 want to mark
                Line 10 want to mark
                
                ^.*This is the specific text in the document that i will search.*\R(?:.*\R){5}((?:.*\R){5})
                

                Tried various option but unable to skip the lines as everything after specific text is getting marked.

                Regards,
                Aa

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

                  Hi, @sam-rathod and All,

                  I do not understand clearly what you want to achiveve !

                  Given this INPUT text, below :

                  "This is the specific text in the document that i will search"
                  Line1 that dont want marked
                  Line2 that dont want marked
                  
                  Line3 that dont want marked
                  
                  Line 1 want to mark
                  Line 2 want to mark
                  Line 3 want to mark
                  Line 4 want to mark
                  Line 5 want to mark
                  
                  ""This is the specific text in the document that i will search"
                  Line1 that dont want marked
                  Line2 that dont want marked
                  
                  Line3 that dont want marked
                  
                  Line 6 want to mark
                  Line 7 want to mark
                  Line 8 want to mark
                  Line 9 want to mark
                  Line 10 want to mark
                  

                  And let’s suppose that you’ve previously bookmarked all the lines with the Line #..# want to mark syntax

                  Then just use the Search > Bookmark > Remove Unmarked lines option and you’re left with the following expected OUTPUT text :

                  Line 1 want to mark
                  Line 2 want to mark
                  Line 3 want to mark
                  Line 4 want to mark
                  Line 5 want to mark
                  Line 6 want to mark
                  Line 7 want to mark
                  Line 8 want to mark
                  Line 9 want to mark
                  Line 10 want to mark
                  

                  Best Regards,

                  guy038

                  ~

                  sam rathodS 1 Reply Last reply Reply Quote 0
                  • sam rathodS
                    sam rathod @guy038
                    last edited by

                    @guy038
                    No i am not able to bookmark only the specific line that i want mark.

                    Basically i want to find a specific text , ignore 4 lines after it and mark& select 5 line after the specific text & 4 lines.

                    sam rathodS 1 Reply Last reply Reply Quote 0
                    • sam rathodS
                      sam rathod @sam rathod
                      last edited by

                      @sam-rathod

                      Sample of data i am trying to figure out.

                      tmp_f01d3921-e931-4f57-b01c-3308f3437ea2.png

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

                        Hello, @sam-rathod and All,

                        Ah, OK. Now, I understand all the story !

                        Just note that you should have put your text as raw text, using the </> indication when replying and not pasting an image. Indeed, even with a OCR plugin, within my favorite graphic viewer, I was not able to convert the letters of your image into raw text :-(( This explains the delay of my reply !


                        So, with this kind of INPUT text :

                        
                         SACS CONNECT Edition V(15.1) - CL                                                        Company: .
                                     *********** SACS IX SEASTATE PROGRAM ***********               DATE 23-OCT-2024  TIME 07:31:44   SEA PAGE   208
                                                             ***** SEASTATE COMBINED LOAD CASE SUMMARY *****
                                                                      RELATIVE TO MUDLINE ELEVATION
                           LOAD  LOAD              FX           FY           FZ           MX           MY           MZ
                           CASE  LABEL
                                                  (KN)         (KN)         (KN)       (KN-M)       (KN-M)       (KN-M)
                                                 
                           127  7119             -125.62      -190.83     -4342.63       4582.3      -3032.8      -1382.1
                           128  7120                0.54      -212.18     -4388.18       5164.0        863.9      -1432.1
                           129  7121              111.01      -159.93     -4333.70       3602.5       4267.7      -1399.5
                           130  7122              202.80       -78.61     -4340.74       1053.9       7076.4      -1374.5
                           131  7131              264.55       -39.54     -4341.04       1111.7       8733.7      -1299.3
                        

                        Just use the search regex, below, in order to mark the expected lines :

                        SEARCH / MARK (?-is)^.+SEASTATE COMBINED LOAD CASE SUMMARY.+\R(?:.+\R){5}\K(?:.+\R){5}


                        Notes :

                        • Note that I use non-capturing groups (?:.......), instead of capturings ones (.......), for each block of five lines.

                        • Now, after the complete line containing the string SEASTATE COMBINED LOAD CASE SUMMARY, with this exact case

                        • And the five lines that follow,

                        • The \K syntax cancel any previous search, so far

                        • So, the next five lines are only taken in account by the regex engine and marked


                        Method :

                        • Open the Mark dialog ( Ctrl + M )

                        • Uncheck all box options

                        • SEARCH / MARK (?-is)^.+SEASTATE COMBINED LOAD CASE SUMMARY.+\R(?:.+\R){5}\K(?:.+\R){5}

                        • Just check the Bookmark line, Purge for each search and Wrap around box options

                        • Select the Regular expression search mode

                        • Click on the Mark All button

                        • Now, you may either :

                          • Copy all these bookmarked lines in an other new tab with the Search > Bookmark > Copy Bookmarked Lines option

                          • Click on the Copy Marked Text button and paste the clipboard contents in an other tab

                        Best Regards

                        guy038

                        sam rathodS 1 Reply Last reply Reply Quote 0
                        • sam rathodS
                          sam rathod @guy038
                          last edited by

                          @guy038
                          Sorry for the inconvenience caused.

                          Thanks a lot will try this. I m sure this will work.

                          Regards,
                          Aa

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