如何将逗号分隔的变量分成多个变量?
这可能是非常初级的,但我仍在学习中。
我已从 XML 文件导入一条记录并得到结果:
"a,b,c,d,e,f,g,h"
我希望最终得到 8 个单独的变量,每个变量对应一个逗号分隔值。
使用 javascript 进行编码的最短方法是什么?
This is probably very elementary, but I'm still learning.
I've imported a record from an XML file and have the result :
"a,b,c,d,e,f,g,h"
I would like to end up with 8 separate variables, one for each comma delimited value.
What is the shortest way to code this using javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您 .split() 列表,您最终将得到一个包含“n”个元素的数组。不确切地说是 8 个单独的变量,而是 8 个可以单独访问的元素。
if you .split() the list, you'll end up with a single array with 'n' number of elements. Not -exactly- 8 separate variables, but 8 elements that can be accessed individually.
使用
split()
use
split()
使用split()。
在您的情况下,
xml_string.split(',');
Use split().
In your case,
xml_string.split(',');
如果结果为字符串,请使用
split
其方法:If you have the result as a string, use the
split
method on it: