APPEND STARTING NUMBERS
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++
add a comment |
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++
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
add a comment |
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++
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++
notepad++
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
Using find-replace in regex mode.
Find what: ([0-9]+)
Replace with: 2561
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
add a comment |
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Using find-replace in regex mode.
Find what: ([0-9]+)
Replace with: 2561
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
add a comment |
Using find-replace in regex mode.
Find what: ([0-9]+)
Replace with: 2561
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
add a comment |
Using find-replace in regex mode.
Find what: ([0-9]+)
Replace with: 2561
Using find-replace in regex mode.
Find what: ([0-9]+)
Replace with: 2561
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
answered Nov 20 '18 at 5:16


Shiv Kumar BaghelShiv Kumar Baghel
1,3373620
1,3373620
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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