以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- trim问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=161783) |
-- 作者:cqlwsam -- 发布时间:2021/3/29 12:53:00 -- trim问题 代码如下: Dim txt As String = "E:\\图片文件夹\\文件检索与管理" Dim txt2 As String = "E:\\图片文件夹" Dim txt1 As String = txt.TrimStart(txt2) output.show(txt1) 结果是只删除了“E" 为什么? |
-- 作者:有点蓝 -- 发布时间:2021/3/29 13:33:00 -- Trim是针对单个字符的 Dim txt1 As String = txt.replace(txt2,"")
|
-- 作者:cqlwsam -- 发布时间:2021/3/29 14:51:00 -- 哦。谢谢! |