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

JavaScript에서 공백을 밑줄로 바꾸시겠습니까?

<시간/>

다음이 우리의 문자열이라고 가정해 봅시다 -

var sentence = "My Name is David Miller I live in AUS";

위 문자열의 공백을 밑줄로 바꾸려면 split()을 join()과 함께 사용하십시오.

예시

다음은 코드입니다 -

var sentence = "My Name is David Miller I live in AUS";
var withUnderscore = sentence.split(' ').join('_');
console.log("The actual result=")
console.log(sentence);
console.log("After replacing the space with underscore=")
console.log(withUnderscore);

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

node fileName.js

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

출력

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

PS C:\Users\Amit\javascript-code> node demo250.js
The actual result=
My Name is David Miller I live in AUS
After replacing the space with underscore=
My_Name_is_David_Miller_I_live_in_AUS