Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에 새 문자열을 만들지 않고 문자열의 일부를 바꾸는 방법이 있습니까?

<시간/>

예, 아래 구문과 같이 replace() 메서드를 사용하여 새 문자열을 만들지 않고 문자열의 일부를 바꿀 수 있습니다. -

var anyVariableName=yourValue;
yourVariableName=yourVariableName.replace(yourOldValue,yourNewValue);

예시

var message="Hello,this is John";
console.log("Before replacing the message="+message);
message=message.replace("John","David Miller");
console.log("After replacing the message="+message);
교체 후

위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -

node fileName.js.

여기에서 내 파일 이름은 demo57.js입니다.

출력

이것은 다음과 같은 출력을 생성합니다 -

PS C:\Users\Amit\JavaScript-code> node demo57.js
Before replacing the message=Hello,this is John
After replacing the message=Hello,this is David Miller