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

문자열 JavaScript에서 추가 공백을 제거하시겠습니까?


여분의 공백을 제거하려면 정규 표현식과 함께 trim()을 사용해야 합니다. 다음은 trim()을 적용하기 전에 공백이 있는 문자열입니다 -

var sentence="My name is John Smith ";

이제 아래 코드와 같이 여분의 공백을 제거합니다 -

예시

var sentence="My name is John Smith ";
console.log("The actual value=");
console.log(sentence);
var originalSentence = sentence.replace(/\s+/g,'').trim();
var afterRemovingTheSpace=originalSentence.trim();
console.log("After removing the spaces=");
console.log(afterRemovingTheSpace);

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

node fileName.js.

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

출력

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

PS C:\Users\Amit\JavaScript-code> node demo90.js
The actual value=
My name is John Smith
After removing the spaces=
MynameisJohnSmith