以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 关于空值 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=187582) |
-- 作者:ygg8310 -- 发布时间:2023/7/28 14:25:00 -- 关于空值 Dim s As String = "D:\\$RECYCLE.BIN D:\\System Volume Information" s = s.Replace("D:\\$RECYCLE.BIN D:\\System Volume Information", Nothing) If s Is Nothing Then MessageBox.Show("a") End If 为何输出的结果不是nothing?
|
-- 作者:有点蓝 -- 发布时间:2023/7/28 14:38:00 -- Replace不管怎么替换都不可能为空,除非直接赋值:s = nothing |