How to match from start and end and, replace string in javascript
I want to change a string/line of a file main.js
from another file replace.js
I want to change the server
property dynamically based on machine ip
main.js
export const environment = {
production: false,
server: `http://localhost:3000`,
apikey: `X199`
};
replace.js
const replace = require('replace-in-file')
const address = require('address')
replace({
files: 'main.js',
from: /^server:..*3000,$/g,
to: `http://${address.ip()}:3000`
})
I have tested multiple regex but none was working for me.
javascript regex
add a comment |
I want to change a string/line of a file main.js
from another file replace.js
I want to change the server
property dynamically based on machine ip
main.js
export const environment = {
production: false,
server: `http://localhost:3000`,
apikey: `X199`
};
replace.js
const replace = require('replace-in-file')
const address = require('address')
replace({
files: 'main.js',
from: /^server:..*3000,$/g,
to: `http://${address.ip()}:3000`
})
I have tested multiple regex but none was working for me.
javascript regex
1
Not sure but if you want to matchserver: `http://localhost:3000`,
you have to remove matching the literal dot and add a`
after 3000 like^server:.*3000`,$
see regex101.com/r/WJkRY6/1
– The fourth bird
Jan 1 at 14:34
used something like this but didn't work/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
@Thefourthbird as per your recommended site, regex is working fine but not inreplace-in-file
npm package that I am using
– WasiF
Jan 1 at 14:42
Did you try it without the anchors?/server:..*3000,/g
or match leading whitespace characters/^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01
add a comment |
I want to change a string/line of a file main.js
from another file replace.js
I want to change the server
property dynamically based on machine ip
main.js
export const environment = {
production: false,
server: `http://localhost:3000`,
apikey: `X199`
};
replace.js
const replace = require('replace-in-file')
const address = require('address')
replace({
files: 'main.js',
from: /^server:..*3000,$/g,
to: `http://${address.ip()}:3000`
})
I have tested multiple regex but none was working for me.
javascript regex
I want to change a string/line of a file main.js
from another file replace.js
I want to change the server
property dynamically based on machine ip
main.js
export const environment = {
production: false,
server: `http://localhost:3000`,
apikey: `X199`
};
replace.js
const replace = require('replace-in-file')
const address = require('address')
replace({
files: 'main.js',
from: /^server:..*3000,$/g,
to: `http://${address.ip()}:3000`
})
I have tested multiple regex but none was working for me.
javascript regex
javascript regex
edited Jan 2 at 6:48
WasiF
asked Jan 1 at 14:28


WasiFWasiF
2,7242639
2,7242639
1
Not sure but if you want to matchserver: `http://localhost:3000`,
you have to remove matching the literal dot and add a`
after 3000 like^server:.*3000`,$
see regex101.com/r/WJkRY6/1
– The fourth bird
Jan 1 at 14:34
used something like this but didn't work/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
@Thefourthbird as per your recommended site, regex is working fine but not inreplace-in-file
npm package that I am using
– WasiF
Jan 1 at 14:42
Did you try it without the anchors?/server:..*3000,/g
or match leading whitespace characters/^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01
add a comment |
1
Not sure but if you want to matchserver: `http://localhost:3000`,
you have to remove matching the literal dot and add a`
after 3000 like^server:.*3000`,$
see regex101.com/r/WJkRY6/1
– The fourth bird
Jan 1 at 14:34
used something like this but didn't work/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
@Thefourthbird as per your recommended site, regex is working fine but not inreplace-in-file
npm package that I am using
– WasiF
Jan 1 at 14:42
Did you try it without the anchors?/server:..*3000,/g
or match leading whitespace characters/^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01
1
1
Not sure but if you want to match
server: `http://localhost:3000`,
you have to remove matching the literal dot and add a `
after 3000 like ^server:.*3000`,$
see regex101.com/r/WJkRY6/1– The fourth bird
Jan 1 at 14:34
Not sure but if you want to match
server: `http://localhost:3000`,
you have to remove matching the literal dot and add a `
after 3000 like ^server:.*3000`,$
see regex101.com/r/WJkRY6/1– The fourth bird
Jan 1 at 14:34
used something like this but didn't work
/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
used something like this but didn't work
/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
@Thefourthbird as per your recommended site, regex is working fine but not in
replace-in-file
npm package that I am using– WasiF
Jan 1 at 14:42
@Thefourthbird as per your recommended site, regex is working fine but not in
replace-in-file
npm package that I am using– WasiF
Jan 1 at 14:42
Did you try it without the anchors?
/server:..*3000,/g
or match leading whitespace characters /^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01
Did you try it without the anchors?
/server:..*3000,/g
or match leading whitespace characters /^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01
add a comment |
1 Answer
1
active
oldest
votes
Try using
replace({
files: 'main.js',
from: /server:s*[`'"]https?://.*?[`'"],/g,
to: `server: 'http://${address.ip()}:3000',`
})
The anchor tags ^$ is not needed because the string 'server: http://localhost:3000' is not started at the very beginning of the file, and is not ended at the very end of the file.
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%2f53996271%2fhow-to-match-from-start-and-end-and-replace-string-in-javascript%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try using
replace({
files: 'main.js',
from: /server:s*[`'"]https?://.*?[`'"],/g,
to: `server: 'http://${address.ip()}:3000',`
})
The anchor tags ^$ is not needed because the string 'server: http://localhost:3000' is not started at the very beginning of the file, and is not ended at the very end of the file.
add a comment |
Try using
replace({
files: 'main.js',
from: /server:s*[`'"]https?://.*?[`'"],/g,
to: `server: 'http://${address.ip()}:3000',`
})
The anchor tags ^$ is not needed because the string 'server: http://localhost:3000' is not started at the very beginning of the file, and is not ended at the very end of the file.
add a comment |
Try using
replace({
files: 'main.js',
from: /server:s*[`'"]https?://.*?[`'"],/g,
to: `server: 'http://${address.ip()}:3000',`
})
The anchor tags ^$ is not needed because the string 'server: http://localhost:3000' is not started at the very beginning of the file, and is not ended at the very end of the file.
Try using
replace({
files: 'main.js',
from: /server:s*[`'"]https?://.*?[`'"],/g,
to: `server: 'http://${address.ip()}:3000',`
})
The anchor tags ^$ is not needed because the string 'server: http://localhost:3000' is not started at the very beginning of the file, and is not ended at the very end of the file.
edited Jan 1 at 15:17
answered Jan 1 at 14:56


Ray ChanRay Chan
47919
47919
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%2f53996271%2fhow-to-match-from-start-and-end-and-replace-string-in-javascript%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
1
Not sure but if you want to match
server: `http://localhost:3000`,
you have to remove matching the literal dot and add a`
after 3000 like^server:.*3000`,$
see regex101.com/r/WJkRY6/1– The fourth bird
Jan 1 at 14:34
used something like this but didn't work
/^server:.*3000`,$/gm
– WasiF
Jan 1 at 14:40
@Thefourthbird as per your recommended site, regex is working fine but not in
replace-in-file
npm package that I am using– WasiF
Jan 1 at 14:42
Did you try it without the anchors?
/server:..*3000,/g
or match leading whitespace characters/^s*server:..*3000,$/g
– The fourth bird
Jan 1 at 15:01