码迷,mamicode.com
首页 > 其他好文 > 详细

Split字符串分割函数

时间:2014-06-21 14:30:32      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   ext   color   

非常非常常用的一个函数Split字符串分割函数。

Dim myTest
myTest = "aaa/bbb/ccc/ddd/eee/fff/ggg"

Dim arrTest
arrTest = Split(myTest , "/" , -1 , 1)

Dim i
For i = 0 to ubound(arrTest)
    print "arrTest(" & i & ") = " & arrTest(i)
Next


打印结果为:

arrTest(0) = aaa
arrTest(1) = bbb
arrTest(2) = ccc
arrTest(3) = ddd
arrTest(4) = eee
arrTest(5) = fff
arrTest(6) = ggg

我经常用来做一些赋值操作,也做一些对抓取到的数据进行分割处理的工作。

Split字符串分割函数,布布扣,bubuko.com

Split字符串分割函数

标签:style   class   blog   code   ext   color   

原文地址:http://www.cnblogs.com/xpws/p/3800064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!