以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]如何拆分FileManager1控件中的文件名? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=85298) |
-- 作者:新福星 -- 发布时间:2016/5/22 18:12:00 -- [求助]如何拆分FileManager1控件中的文件名? Dim fm1 As WinForm.FileManager = e.Form.Controls("FileManager1") 这样一个控件,存入了多个文件。现在想把每个文件名拆分出来,不知道这个文件名之间的区分符是什么?谢谢 |
-- 作者:大红袍 -- 发布时间:2016/5/22 20:12:00 -- 看看这里
Dim str As String = "abc" & vbcrlf & "123" For Each s As String In str.Replace(chr(10), "").split(chr(13)) |