我有这个字符串
'john smith~123 Street~Apt 4~New York~NY~12345'
使用JavaScript,最快的方法是什么
var name = "john smith";
var street= "123 Street";
//etc...
我有这个字符串
'john smith~123 Street~Apt 4~New York~NY~12345'
使用JavaScript,最快的方法是什么
var name = "john smith";
var street= "123 Street";
//etc...
当前回答
根据ECMAScript6 ES6,干净的方法是解构数组:
const input = 'john smith~123 Street~Apt 4~New York~NY~12345'; Const[名称,街道,单位,城市,州,zip] = input.split('~'); console.log(名称);// John Smith console.log(街);// 123街 console.log(单位);// 4号房间 console.log(城市);//纽约 console.log(状态);/ /纽约 console.log (zip);/ / 12345
输入字符串中可能有额外的项。在这种情况下,你可以使用rest操作符获取一个数组,或者直接忽略它们:
const input = 'john smith~123 Street~Apt 4~New York~NY~12345'; Const[名字,街道,…Others] = input.split('~'); console.log(名称);// John Smith console.log(街);// 123街 console.log(他人);// ["Apt 4", "New York", "NY", "12345"]
我假设值是只读引用,并使用了const声明。
党委ES6 !
其他回答
因为分隔逗号的问题被复制到这个问题上,所以在这里添加这个。
如果你想对一个字符进行拆分,并处理该字符后面可能出现的额外空格,通常使用逗号,你可以使用替换然后拆分,如下所示:
var items = string.replace(/,\s+/, ",").split(',')
喜欢的东西:
var divided = str.split("/~/");
var name=divided[0];
var street = divided[1];
可能是最简单的
扎克是对的。使用他的方法,你也可以做出一个看似“多维”的数组。我在JSFiddle http://jsfiddle.net/LcnvJ/2/上创建了一个快速示例
// array[0][0] will produce brian
// array[0][1] will produce james
// array[1][0] will produce kevin
// array[1][1] will produce haley
var array = [];
array[0] = "brian,james,doug".split(",");
array[1] = "kevin,haley,steph".split(",");
你不需要jQuery。
var s = 'john smith~123 Street~Apt 4~New York~NY~12345'; Var字段= s.split(/~/); 变量名称=字段[0]; Var street = fields[1]; console.log(名称); console.log(街);
您需要研究JavaScript的substr或split,因为这不是一个真正适合jQuery的任务。