如何将逗号分隔的变量分成多个变量?

发布于 2024-10-06 08:54:05 字数 180 浏览 4 评论 0原文

这可能是非常初级的,但我仍在学习中。
我已从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

掩于岁月 2024-10-13 08:54:05

如果您 .split() 列表,您最终将得到一个包含“n”个元素的数组。不确切地说是 8 个单独的变量,而是 8 个可以单独访问的元素。

var myList = "a,b,c,d,e,f,g,h";
var myArray = myList.split( ',' );

alert( myArray[ 4 ] );

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.

var myList = "a,b,c,d,e,f,g,h";
var myArray = myList.split( ',' );

alert( myArray[ 4 ] );
温折酒 2024-10-13 08:54:05

使用 split()

js>s = "a,b,c,d,e,f,g,h"
a,b,c,d,e,f,g,h
js>a = s.split(',')
a,b,c,d,e,f,g,h
js>a[0]
a
js>a[4]
e

use split()

js>s = "a,b,c,d,e,f,g,h"
a,b,c,d,e,f,g,h
js>a = s.split(',')
a,b,c,d,e,f,g,h
js>a[0]
a
js>a[4]
e
她说她爱他 2024-10-13 08:54:05

使用split()

在您的情况下, xml_string.split(',');

Use split().

In your case, xml_string.split(',');

大海や 2024-10-13 08:54:05

如果结果为字符串,请使用 split其方法:

var myList = "a,b,c,d,e,f,g,h";
var myArray = myList.split(",");

If you have the result as a string, use the split method on it:

var myList = "a,b,c,d,e,f,g,h";
var myArray = myList.split(",");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文