Office中国论坛/Access中国论坛
标题:
如何将“银行存款、现金”分割成“银行存款”、“现金”
[打印本页]
作者:
wen123456
时间:
2012-5-15 08:20
标题:
如何将“银行存款、现金”分割成“银行存款”、“现金”
本帖最后由 wen123456 于 2012-5-15 08:21 编辑
如何将“银行存款、现金”分割成“银行存款”、“现金”
作者:
zhuyiwen
时间:
2012-5-15 20:20
用 split 函数分割字符串
dim s as string
dim sp() as string
dim i as long
s = "银行存款、现金"
sp = split(s, "、")
if ubound(sp) >= 0 Then
for i = 0 to ubound(sp)
debug.print sp(i)
next
end if
复制代码
作者:
YXH_YXH
时间:
2012-5-17 23:12
帮顶!!!
并请zhuyiwen提供完整的应用。我现是通过EXCEL来实现的。
欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/)
Powered by Discuz! X3.3