用特殊字符序列将字符串分割成 JavaScript 中的两对子字符串?
假设我们有包含特殊字符序列的以下字符串 -
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' ]
广告