在 JavaScript 中将带有特殊字符序列的字符串分成一对子字符串?

javascriptweb developmentobject oriented programming

假设我们有以下带有特殊字符序列 − 的字符串

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

要将上述字符串分成子字符串,请使用正则表达式,然后使用 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' ]

相关文章