APPEND STARTING NUMBERS












-3















I would like to append a 256 digits to thousands of number in notepad plus to appear as below:



776333533
774361221
772333707
771615215
784713890
786164089
777664662


I would want all these numbers to appear as below:



256776333533
256774361221
256772333707
256771615215
256784713890
256786164089
256777664662


i need a command that can enable me achieve this










share|improve this question




















  • 2





    So, what have you tried?

    – Andreas
    Nov 20 '18 at 4:07











  • See stackoverflow.com/tags/regex/info

    – AdrianHHH
    Nov 20 '18 at 10:45
















-3















I would like to append a 256 digits to thousands of number in notepad plus to appear as below:



776333533
774361221
772333707
771615215
784713890
786164089
777664662


I would want all these numbers to appear as below:



256776333533
256774361221
256772333707
256771615215
256784713890
256786164089
256777664662


i need a command that can enable me achieve this










share|improve this question




















  • 2





    So, what have you tried?

    – Andreas
    Nov 20 '18 at 4:07











  • See stackoverflow.com/tags/regex/info

    – AdrianHHH
    Nov 20 '18 at 10:45














-3












-3








-3








I would like to append a 256 digits to thousands of number in notepad plus to appear as below:



776333533
774361221
772333707
771615215
784713890
786164089
777664662


I would want all these numbers to appear as below:



256776333533
256774361221
256772333707
256771615215
256784713890
256786164089
256777664662


i need a command that can enable me achieve this










share|improve this question
















I would like to append a 256 digits to thousands of number in notepad plus to appear as below:



776333533
774361221
772333707
771615215
784713890
786164089
777664662


I would want all these numbers to appear as below:



256776333533
256774361221
256772333707
256771615215
256784713890
256786164089
256777664662


i need a command that can enable me achieve this







notepad++






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 7:32









lagom

3,50181937




3,50181937










asked Nov 20 '18 at 4:03









AMERICAAMERICA

1




1








  • 2





    So, what have you tried?

    – Andreas
    Nov 20 '18 at 4:07











  • See stackoverflow.com/tags/regex/info

    – AdrianHHH
    Nov 20 '18 at 10:45














  • 2





    So, what have you tried?

    – Andreas
    Nov 20 '18 at 4:07











  • See stackoverflow.com/tags/regex/info

    – AdrianHHH
    Nov 20 '18 at 10:45








2




2





So, what have you tried?

– Andreas
Nov 20 '18 at 4:07





So, what have you tried?

– Andreas
Nov 20 '18 at 4:07













See stackoverflow.com/tags/regex/info

– AdrianHHH
Nov 20 '18 at 10:45





See stackoverflow.com/tags/regex/info

– AdrianHHH
Nov 20 '18 at 10:45












2 Answers
2






active

oldest

votes


















0














Using find-replace in regex mode.



Find what: ([0-9]+)



Replace with: 2561






share|improve this answer
























  • THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

    – AMERICA
    Nov 20 '18 at 4:32













  • It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

    – Loocid
    Nov 20 '18 at 4:34











  • Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

    – AMERICA
    Nov 20 '18 at 4:43





















0














enable Multiline Select setting from Settings > Preferences > Editing> Multi-Editing Settings



Then use CTRL + Mouse click to select multi place and write 256



Ref : https://notepad-plus-plus.org/features/multi-editing.html






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    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',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386051%2fappend-starting-numbers%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Using find-replace in regex mode.



    Find what: ([0-9]+)



    Replace with: 2561






    share|improve this answer
























    • THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

      – AMERICA
      Nov 20 '18 at 4:32













    • It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

      – Loocid
      Nov 20 '18 at 4:34











    • Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

      – AMERICA
      Nov 20 '18 at 4:43


















    0














    Using find-replace in regex mode.



    Find what: ([0-9]+)



    Replace with: 2561






    share|improve this answer
























    • THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

      – AMERICA
      Nov 20 '18 at 4:32













    • It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

      – Loocid
      Nov 20 '18 at 4:34











    • Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

      – AMERICA
      Nov 20 '18 at 4:43
















    0












    0








    0







    Using find-replace in regex mode.



    Find what: ([0-9]+)



    Replace with: 2561






    share|improve this answer













    Using find-replace in regex mode.



    Find what: ([0-9]+)



    Replace with: 2561







    share|improve this answer












    share|improve this answer



    share|improve this answer










    answered Nov 20 '18 at 4:10









    LoocidLoocid

    2,61911230




    2,61911230













    • THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

      – AMERICA
      Nov 20 '18 at 4:32













    • It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

      – Loocid
      Nov 20 '18 at 4:34











    • Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

      – AMERICA
      Nov 20 '18 at 4:43





















    • THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

      – AMERICA
      Nov 20 '18 at 4:32













    • It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

      – Loocid
      Nov 20 '18 at 4:34











    • Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

      – AMERICA
      Nov 20 '18 at 4:43



















    THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

    – AMERICA
    Nov 20 '18 at 4:32







    THIS DOESNT WORKUsing find-replace in regex mode. Find what: ([0-9]+) Replace with: 2561

    – AMERICA
    Nov 20 '18 at 4:32















    It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

    – Loocid
    Nov 20 '18 at 4:34





    It works fine, I've tested it with your set of numbers. Are you using regex mode in find and replace?

    – Loocid
    Nov 20 '18 at 4:34













    Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

    – AMERICA
    Nov 20 '18 at 4:43







    Kindly looks like ive failed. Help me append these numbers and send me a .txt file to enockzg@gmail.com kindly send me your email so i can send you a list of numbers

    – AMERICA
    Nov 20 '18 at 4:43















    0














    enable Multiline Select setting from Settings > Preferences > Editing> Multi-Editing Settings



    Then use CTRL + Mouse click to select multi place and write 256



    Ref : https://notepad-plus-plus.org/features/multi-editing.html






    share|improve this answer




























      0














      enable Multiline Select setting from Settings > Preferences > Editing> Multi-Editing Settings



      Then use CTRL + Mouse click to select multi place and write 256



      Ref : https://notepad-plus-plus.org/features/multi-editing.html






      share|improve this answer


























        0












        0








        0







        enable Multiline Select setting from Settings > Preferences > Editing> Multi-Editing Settings



        Then use CTRL + Mouse click to select multi place and write 256



        Ref : https://notepad-plus-plus.org/features/multi-editing.html






        share|improve this answer













        enable Multiline Select setting from Settings > Preferences > Editing> Multi-Editing Settings



        Then use CTRL + Mouse click to select multi place and write 256



        Ref : https://notepad-plus-plus.org/features/multi-editing.html







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 20 '18 at 5:16









        Shiv Kumar BaghelShiv Kumar Baghel

        1,3373620




        1,3373620






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386051%2fappend-starting-numbers%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

            Npm cannot find a required file even through it is in the searched directory