Add character to every number via Regex in Notepad++

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












I have a very basic question which i just can not get my head around. I do have a text document like this:



This is 5 a test!
This 3 is a test!
This is a 9 test!


and i want it to look like this:



This is 5c a test!
This 3c is a test!
This is a 9c test!


Means i want to add a 'c' to every number i find. I tried this:



Find what: [0-9]+]
Replace with: $1c
Search Mode: Regular expression


but i am obviously doing something wrong because it is not working. Help would be appreciated. Thank you!










share|improve this question

























    up vote
    1
    down vote

    favorite












    I have a very basic question which i just can not get my head around. I do have a text document like this:



    This is 5 a test!
    This 3 is a test!
    This is a 9 test!


    and i want it to look like this:



    This is 5c a test!
    This 3c is a test!
    This is a 9c test!


    Means i want to add a 'c' to every number i find. I tried this:



    Find what: [0-9]+]
    Replace with: $1c
    Search Mode: Regular expression


    but i am obviously doing something wrong because it is not working. Help would be appreciated. Thank you!










    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have a very basic question which i just can not get my head around. I do have a text document like this:



      This is 5 a test!
      This 3 is a test!
      This is a 9 test!


      and i want it to look like this:



      This is 5c a test!
      This 3c is a test!
      This is a 9c test!


      Means i want to add a 'c' to every number i find. I tried this:



      Find what: [0-9]+]
      Replace with: $1c
      Search Mode: Regular expression


      but i am obviously doing something wrong because it is not working. Help would be appreciated. Thank you!










      share|improve this question













      I have a very basic question which i just can not get my head around. I do have a text document like this:



      This is 5 a test!
      This 3 is a test!
      This is a 9 test!


      and i want it to look like this:



      This is 5c a test!
      This 3c is a test!
      This is a 9c test!


      Means i want to add a 'c' to every number i find. I tried this:



      Find what: [0-9]+]
      Replace with: $1c
      Search Mode: Regular expression


      but i am obviously doing something wrong because it is not working. Help would be appreciated. Thank you!







      notepad++ regex






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 3 hours ago









      user3877230

      651310




      651310




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          You almost got it right.



          You want to search for ([0-9]+)

          And replace that with $1c



          You use ( ) to create a capture group, so $1 works.



          Alternatively, you can replace with $0c instead, then you don't need to use a capture group.






          share|improve this answer
















          • 1




            It works perfectly fine. Thank you very much ;)
            – user3877230
            3 hours ago

















          up vote
          2
          down vote














          • Ctrl+H

          • Find what: d+

          • Replace with: $0c

          • check Wrap around

          • check Regular expression

          • Replace all

          Result for given example:



          This is 5c a test!
          This 3c is a test!
          This is a 9c test!





          share|improve this answer




















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "3"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1364807%2fadd-character-to-every-number-via-regex-in-notepad%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            You almost got it right.



            You want to search for ([0-9]+)

            And replace that with $1c



            You use ( ) to create a capture group, so $1 works.



            Alternatively, you can replace with $0c instead, then you don't need to use a capture group.






            share|improve this answer
















            • 1




              It works perfectly fine. Thank you very much ;)
              – user3877230
              3 hours ago














            up vote
            2
            down vote



            accepted










            You almost got it right.



            You want to search for ([0-9]+)

            And replace that with $1c



            You use ( ) to create a capture group, so $1 works.



            Alternatively, you can replace with $0c instead, then you don't need to use a capture group.






            share|improve this answer
















            • 1




              It works perfectly fine. Thank you very much ;)
              – user3877230
              3 hours ago












            up vote
            2
            down vote



            accepted







            up vote
            2
            down vote



            accepted






            You almost got it right.



            You want to search for ([0-9]+)

            And replace that with $1c



            You use ( ) to create a capture group, so $1 works.



            Alternatively, you can replace with $0c instead, then you don't need to use a capture group.






            share|improve this answer












            You almost got it right.



            You want to search for ([0-9]+)

            And replace that with $1c



            You use ( ) to create a capture group, so $1 works.



            Alternatively, you can replace with $0c instead, then you don't need to use a capture group.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 3 hours ago









            LPChip

            33.8k44680




            33.8k44680







            • 1




              It works perfectly fine. Thank you very much ;)
              – user3877230
              3 hours ago












            • 1




              It works perfectly fine. Thank you very much ;)
              – user3877230
              3 hours ago







            1




            1




            It works perfectly fine. Thank you very much ;)
            – user3877230
            3 hours ago




            It works perfectly fine. Thank you very much ;)
            – user3877230
            3 hours ago












            up vote
            2
            down vote














            • Ctrl+H

            • Find what: d+

            • Replace with: $0c

            • check Wrap around

            • check Regular expression

            • Replace all

            Result for given example:



            This is 5c a test!
            This 3c is a test!
            This is a 9c test!





            share|improve this answer
























              up vote
              2
              down vote














              • Ctrl+H

              • Find what: d+

              • Replace with: $0c

              • check Wrap around

              • check Regular expression

              • Replace all

              Result for given example:



              This is 5c a test!
              This 3c is a test!
              This is a 9c test!





              share|improve this answer






















                up vote
                2
                down vote










                up vote
                2
                down vote










                • Ctrl+H

                • Find what: d+

                • Replace with: $0c

                • check Wrap around

                • check Regular expression

                • Replace all

                Result for given example:



                This is 5c a test!
                This 3c is a test!
                This is a 9c test!





                share|improve this answer













                • Ctrl+H

                • Find what: d+

                • Replace with: $0c

                • check Wrap around

                • check Regular expression

                • Replace all

                Result for given example:



                This is 5c a test!
                This 3c is a test!
                This is a 9c test!






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 3 hours ago









                Toto

                3,04381024




                3,04381024



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1364807%2fadd-character-to-every-number-via-regex-in-notepad%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    What does second last employer means? [closed]

                    List of Gilmore Girls characters

                    Confectionery