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

쉼표와 다음 단어 뒤의 텍스트를 제거하는 JavaScript 정규식?

<시간/>

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

var sentence = 'My Name is John, Smith I live in US';
console.log("The original value="+sentence);

쉼표 뒤의 텍스트와 다음 단어를 제거해야 합니다. 즉 "I live in US"를 제거하고 나머지는 유지합니다. 이것은 결과 문자열이 될 것입니다 -

My Name is John, Smith

이를 위해 split()과 함께 match()를 사용하십시오.

예시

var sentence = 'My Name is John, Smith I live in US';
console.log("The original value="+sentence);
var expression = sentence.match(/([^,]*)(.*)/)[1];
var positionForComma = sentence.match(/([^,]*),(.*)/)[2].split(' ')[1]
var newValue = expression + ', ' + positionForComma
console.log("Updated="+newValue);

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

node fileName.js.

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

출력

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

PS C:\Users\Amit\javascript-code> node demo175.js
The original value=My Name is John, Smith I live in US
Updated=My Name is John, Smith