以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 字符转换成数组怎么做. (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=161823) |
-- 作者:夜点蚊香 -- 发布时间:2021/3/30 22:57:00 -- 字符转换成数组怎么做. Dim aj As String = " 1,2,3 " Dim Names() As String = {aj} For i As Integer = 0 To Names.Length -1 Output.Show(Names(i)) Next 请问如何 让 aj 转换成 names() 的数组
|
-- 作者:有点蓝 -- 发布时间:2021/3/30 23:38:00 -- http://www.foxtable.com/webhelp/topics/0245.htm Dim Names() As String =ai.split(",")
|