Separate String into Substrings in JavaScript



Let’s say we have the following string with special character sequence −

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

To separate the above string into substring, use regex and then split(). The syntax is as follows −

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

Following is the complete JavaScript code −

Example

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

To run the above program, you need to use the following command −

node fileName.js.

Here, my file name is demo39.js.

Output

This will produce the following output −

PS C:\Users\Amit\JavaScript-code> node demo39.js
The Value= John <----> Smith
[ 'John', 'Smith' ]
Updated on: 2020-09-01T12:03:44+05:30

661 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements