假设我们有以下带有特殊字符序列的字符串-
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' ]