VB Split怎样多个字符分割?
1个回答
展开全部
分别分解。如有:
DIM x() AS STRING,y() as string,s as string
DIM i as integer,j as integer
s="a1,a2,a3;b1,b2,b3,b4"
x=split(s,";") ' 结果x有两个元素:"a1,a2,a3"和"b1,b2,b3,b4"
for i=LBOUND(X) TO UBOUND(X)
y=split(x(i),",")
for j=LBOUND(y) to UBOUND(y)
print y(j),
next j
print
next i
DIM x() AS STRING,y() as string,s as string
DIM i as integer,j as integer
s="a1,a2,a3;b1,b2,b3,b4"
x=split(s,";") ' 结果x有两个元素:"a1,a2,a3"和"b1,b2,b3,b4"
for i=LBOUND(X) TO UBOUND(X)
y=split(x(i),",")
for j=LBOUND(y) to UBOUND(y)
print y(j),
next j
next i
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询