以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  分隔字符串  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=117451)

--  作者:fubblyc
--  发布时间:2018/4/12 16:21:00
--  分隔字符串
openqq客户端
dim a as string 
dim b as string
Dim s As String = a & "," & b    中间固定用 ,  隔开
QQClient.Send(s)

openqq服务端
dim c as string = e.message
dr("第一列") = \'" &  & "\'   a字符串
dr("第二列")= \'" &  & "\'   bz字符串

要怎么把 c 这个字符串 拆分成 a  和 b  呢
c 中间固定用 ,  隔开

--  作者:fubblyc
--  发布时间:2018/4/12 16:32:00
--  
用 Split(Value) 就可以了。
谢谢老师!!