Add character to every number via Regex in Notepad++
Clash 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!
notepad++ regex
add a comment |Â
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!
notepad++ regex
add a comment |Â
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!
notepad++ regex
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
notepad++ regex
asked 3 hours ago
user3877230
651310
651310
add a comment |Â
add a comment |Â
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.
1
It works perfectly fine. Thank you very much ;)
– user3877230
3 hours ago
add a comment |Â
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!
add a comment |Â
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.
1
It works perfectly fine. Thank you very much ;)
– user3877230
3 hours ago
add a comment |Â
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.
1
It works perfectly fine. Thank you very much ;)
– user3877230
3 hours ago
add a comment |Â
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.
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.
answered 3 hours ago


LPChip
33.8k44680
33.8k44680
1
It works perfectly fine. Thank you very much ;)
– user3877230
3 hours ago
add a comment |Â
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
add a comment |Â
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!
add a comment |Â
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!
add a comment |Â
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!
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!
answered 3 hours ago


Toto
3,04381024
3,04381024
add a comment |Â
add a comment |Â
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
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
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
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
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