use search result in replace statement with vim substitute
up vote
1
down vote
favorite
I've got a file with a whole heap of words of the form 'foo' and i want to change them to Literal('foo'). The following :s command :%s/'.*'/Literal('.*')/gci
finds the things i want to change but then it replaces them all with Literal('.*') rather than Literal('foo')
Examples:
I get:
'_' -> Literal('.*')
'dog' -> Literal('.*')
I want:
'_' -> Literal('_')
'dog' -> Literal('dog')
vim regular-expression
add a comment |
up vote
1
down vote
favorite
I've got a file with a whole heap of words of the form 'foo' and i want to change them to Literal('foo'). The following :s command :%s/'.*'/Literal('.*')/gci
finds the things i want to change but then it replaces them all with Literal('.*') rather than Literal('foo')
Examples:
I get:
'_' -> Literal('.*')
'dog' -> Literal('.*')
I want:
'_' -> Literal('_')
'dog' -> Literal('dog')
vim regular-expression
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I've got a file with a whole heap of words of the form 'foo' and i want to change them to Literal('foo'). The following :s command :%s/'.*'/Literal('.*')/gci
finds the things i want to change but then it replaces them all with Literal('.*') rather than Literal('foo')
Examples:
I get:
'_' -> Literal('.*')
'dog' -> Literal('.*')
I want:
'_' -> Literal('_')
'dog' -> Literal('dog')
vim regular-expression
I've got a file with a whole heap of words of the form 'foo' and i want to change them to Literal('foo'). The following :s command :%s/'.*'/Literal('.*')/gci
finds the things i want to change but then it replaces them all with Literal('.*') rather than Literal('foo')
Examples:
I get:
'_' -> Literal('.*')
'dog' -> Literal('.*')
I want:
'_' -> Literal('_')
'dog' -> Literal('dog')
vim regular-expression
vim regular-expression
edited yesterday
Rui F Ribeiro
38.6k1479128
38.6k1479128
asked Dec 28 '13 at 4:31
user191304
255
255
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
You almost have it
:%s/('.*')/Literal(1)/gci
You need to save the match and reference it in the replace. You were inserting a literal (no pun) .* in the replace.
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
add a comment |
up vote
1
down vote
An alternative to casey's answer with explicit capturing is to restrict the match with zs
(start) and ze
(end), to assert that the single quotes are there, but don't include them. Then, you can just refer to the match in the replacement part with &
:
:%s/'zs.*ze'/Literal(&)/gci
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f106849%2fuse-search-result-in-replace-statement-with-vim-substitute%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
up vote
4
down vote
accepted
You almost have it
:%s/('.*')/Literal(1)/gci
You need to save the match and reference it in the replace. You were inserting a literal (no pun) .* in the replace.
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
add a comment |
up vote
4
down vote
accepted
You almost have it
:%s/('.*')/Literal(1)/gci
You need to save the match and reference it in the replace. You were inserting a literal (no pun) .* in the replace.
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
You almost have it
:%s/('.*')/Literal(1)/gci
You need to save the match and reference it in the replace. You were inserting a literal (no pun) .* in the replace.
You almost have it
:%s/('.*')/Literal(1)/gci
You need to save the match and reference it in the replace. You were inserting a literal (no pun) .* in the replace.
answered Dec 28 '13 at 4:41
casey
11.4k33457
11.4k33457
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
add a comment |
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
Wonderful. Thanks so much.
– user191304
Dec 28 '13 at 4:59
add a comment |
up vote
1
down vote
An alternative to casey's answer with explicit capturing is to restrict the match with zs
(start) and ze
(end), to assert that the single quotes are there, but don't include them. Then, you can just refer to the match in the replacement part with &
:
:%s/'zs.*ze'/Literal(&)/gci
add a comment |
up vote
1
down vote
An alternative to casey's answer with explicit capturing is to restrict the match with zs
(start) and ze
(end), to assert that the single quotes are there, but don't include them. Then, you can just refer to the match in the replacement part with &
:
:%s/'zs.*ze'/Literal(&)/gci
add a comment |
up vote
1
down vote
up vote
1
down vote
An alternative to casey's answer with explicit capturing is to restrict the match with zs
(start) and ze
(end), to assert that the single quotes are there, but don't include them. Then, you can just refer to the match in the replacement part with &
:
:%s/'zs.*ze'/Literal(&)/gci
An alternative to casey's answer with explicit capturing is to restrict the match with zs
(start) and ze
(end), to assert that the single quotes are there, but don't include them. Then, you can just refer to the match in the replacement part with &
:
:%s/'zs.*ze'/Literal(&)/gci
answered Dec 28 '13 at 20:31
Ingo Karkat
8,53911832
8,53911832
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2funix.stackexchange.com%2fquestions%2f106849%2fuse-search-result-in-replace-statement-with-vim-substitute%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