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

JavaScript에서 특수 문자 시퀀스가 ​​있는 문자열을 한 쌍의 하위 문자열로 분리하시겠습니까?


특수 문자 시퀀스가 ​​있는 다음 문자열이 있다고 가정해 보겠습니다. -

var fullName=" John <----> Smith ";

위의 문자열을 부분 문자열로 분리하려면 regex를 사용한 다음 split()을 사용하십시오. 구문은 다음과 같습니다 -

var anyVariableName=(/\s*<---->\s*/g);
var anyVariableName=yourVariableName.trim().split(yourVariableName);

다음은 완전한 JavaScript 코드입니다 -

예시

var fullName=" John <----> Smith ";
console.log("The Value="+fullName);
var regularExpression=(/\s*<---->\s*/g);
var seprateName=fullName.trim().split(regularExpression);
console.log(seprateName);

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

node fileName.js.

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

출력

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

PS C:\Users\Amit\JavaScript-code> node demo39.js
The Value= John <----> Smith
[ 'John', 'Smith' ]