dim
str
as
string,
a
as
string,
b
as
string,
c
as
string,
d
as
string
str
=
"123f,456ggdf,ab123c,e954fg"
a
=
split(str,
",")(0)
'提取第一个逗号之前的字符串
b
=
split(str,
",")(1)
'提取第一个逗号与第二个逗号之间的字符串
c
=
split(str,
",")(2)
'提取第二个逗号与第三个逗号之间的字符串
d
=
split(str,
",")(4)
'提取第三个逗号之后的字符串