Community
    • Login

    how to append the numbers with specific string ??

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    14 Posts 4 Posters 1.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.
    • kamal lochanK
      kamal lochan
      last edited by

      BEFORE:

      abc xyg kamal typ kamal plo kamal 90u kamal

      zxcv kamal rdfd kamal File kamal kamal opd

      AFTER:i wants below output

      abc xyg kamal 1 typ kamal 2 plo kamal 3 90u kamal 4

      zxcv kamal 5 rdfd kamal 6 File kamal 7 kamal 8 opd

      1 Reply Last reply Reply Quote 0
      • kamal lochanK
        kamal lochan
        last edited by

        BEFORE:
        abc xyg kamal typ kamal plo kamal 90u kamal

        zxcv kamal rdfd kamal File kamal kamal opd

        AFTER:i wants below output
        abc xyg kamal 1 typ kamal 2 plo kamal 3 90u kamal 4

        zxcv kamal 5 rdfd kamal 6 File kamal 7 kamal 8 opd

        in the above text ,i wants to change kamal string to kamal 1 and then kamal 2 and then kamal 3 and then kamal 4 .

        how can i do that .??

        1 Reply Last reply Reply Quote 0
        • kamal lochanK
          kamal lochan
          last edited by kamal lochan

          @kamal-lochan said in how to append the numbers with specific string ??:

          change

          Wherever Kamal string is there i wants to append some number to it .example first time kamal string appeared so i will replace it kamal 1 and for 2nd time kamal string appeared i will replace it kamal 2 and 3rd time kamal 3 and so on …how can i do that .

          Alan KilbornA Terry RT 2 Replies Last reply Reply Quote 0
          • Alan KilbornA
            Alan Kilborn @kamal lochan
            last edited by Alan Kilborn

            @kamal-lochan

            You will likely have to resort to some sort of programming language solution to make that happen. Notepad++ supports some scripting languages as plugins which can do it. An example is the Pythonscript plugin, where the classic example of it is found in the documentation:

            609cb9f6-05ff-4a1b-852a-f6eb41ae3677-image.png

            In your case that code would be changed to be a bit more complicated:

            count = 0
            
            def add_1(m):
                global count
                count += 1
                return ' ' + str(count)
            
            editor.rereplace(r'(?<=kamal)(?! \d)', add_1);
            

            Here’s one of your earlier example sections of “BEFORE” text:

            hfshfdohoh kamal from which build the issue is comming need to check it out .
            nscknkjnkjdnjknnkjnjd jnnfdnfn kamal from which build the issue is comming need to check it out .
            nndnfdoihiofdhoifdhoi dnidihdi nindiididkamal from which build the issue is comming need to check it out .
            jbffbufb kamal from which build the issue is comming need to check it out .
            hfhfjfj kamal from whickamal from which build the issue is comming need to check it out .
            nidididn kamal from which build the issue is comming need to check it out .
            nnidnid kamal from which build the issue is comming need to check it out .
            

            Here’s what the “AFTER” text looks like after running that script on it:

            hfshfdohoh kamal 1 from which build the issue is comming need to check it out .
            nscknkjnkjdnjknnkjnjd jnnfdnfn kamal 2 from which build the issue is comming need to check it out .
            nndnfdoihiofdhoifdhoi dnidihdi nindiididkamal 3 from which build the issue is comming need to check it out .
            jbffbufb kamal 4 from which build the issue is comming need to check it out .
            hfhfjfj kamal 5 from whickamal 6 from which build the issue is comming need to check it out .
            nidididn kamal 7 from which build the issue is comming need to check it out .
            nnidnid kamal 8 from which build the issue is comming need to check it out .
            
            1 Reply Last reply Reply Quote 1
            • kamal lochanK
              kamal lochan
              last edited by

              @Alan-Kilborn said in how to append the numbers with specific string ??:

              Pythonscript plugin

              Can you please share the steps ;
              1)where i can run python scripits and how the out put wil come on console ??
              Please share the steps+steps scpreen shot if possible

              1 Reply Last reply Reply Quote 0
              • kamal lochanK
                kamal lochan
                last edited by

                ![alt text](![image url](1.png image url))

                i am running python scripts in one tab and in other tab my text is present .

                is thre any thing do i need to do?

                astrosofistaA 1 Reply Last reply Reply Quote 0
                • astrosofistaA
                  astrosofista @kamal lochan
                  last edited by

                  Hi @kamal-lochan

                  Here are some basic hints for getting a Python script to run:

                  https://community.notepad-plus-plus.org/post/54655
                  

                  Once the script is installed, select the text to process and run the script.

                  Have fun!

                  Alan KilbornA 1 Reply Last reply Reply Quote 1
                  • Alan KilbornA
                    Alan Kilborn @astrosofista
                    last edited by

                    @astrosofista said in how to append the numbers with specific string ??:

                    select the text to process and run the script.

                    Actually, the script runs on the currently-active document (the entire text of the document), not the selected text. We could change it slightly to do that, but that wasn’t requested.

                    astrosofistaA 1 Reply Last reply Reply Quote 1
                    • astrosofistaA
                      astrosofista @Alan Kilborn
                      last edited by

                      That’s what I wanted to write, but my fingers were faster !

                      Anyway, my preference is always to process the selected text or it via the clipboard, not the entire document.

                      OP, now you know what to do. Go for it !

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

                        @kamal-lochan said in how to append the numbers with specific string ??:

                        Wherever Kamal string is there i wants to append some number to it .

                        Here is an alternative option which ONLY involves regular expressions (and the column editor function).

                        1. replace all CRLF with @@
                          Place cursor in the first position of the file. Using the Replace function we have
                          Find What:\R
                          Replace With:@@
                          Search mode is “regular expression”, click on “replace all”

                        2. insert CR & LF before every “kamal” text
                          Place cursor in the first position of the file. Using the Replace function we have
                          Find What:(([a-z]+)?kamal)
                          Replace With:\r\n\1
                          Search mode is “regular expression”, click on “replace all”

                        3. insert line numbers and move to behind the “kamal” text
                          Check if the first line has the “kamal” text, if not position the cursor in the first position of the second line (which does have the “kamal” text). Use column editor and use “number to insert”, starting 1, increase 1 and repeat 1, click OK.

                        4. Now to move the number behind the “kamal” text.
                          Using the Replace function we have
                          Find What:^(\d+)[a-z]+)
                          Replace With:\2 \1

                        5. recreate the original CRLF and remove the previously inserted ones
                          Using the Replace function we have
                          Find What:(@@)|\R
                          Replace With:?1(\r\n)

                        I’n not proposing that you use this method as it seems you are well on the way to solving it the “pythonscript” way which is far more sensible. I’m showing you another method which is very simple to understand but as a consequence has a few steps to it.

                        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