以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  Not Like问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=51636)

--  作者:lsy
--  发布时间:2014/5/30 11:35:00
--  Not Like问题

Dim s As String = "a"
If s Like "a" Then \'正常
    Output.Show("Yes")

End If


If s Not Like "a" Then \'报错
    Output.Show("No")
End If


--  作者:Bin
--  发布时间:2014/5/30 11:36:00
--  
If Not  s Like "a" Then \'报错
    Output.Show("No")
End If
--  作者:lsy
--  发布时间:2014/5/30 11:37:00
--  
以下是引用Bin在2014-5-30 11:36:00的发言:
If Not  s Like "a" Then \'报错
    Output.Show("No")
End If

奇怪啊,非得这样。

谢谢。


--  作者:e-png
--  发布时间:2014/5/30 15:12:00
--  

2楼bin的也不够,用contains 。


--  作者:Bin
--  发布时间:2014/5/30 15:14:00
--  
通常用contains  要用LIke 和2楼这么用也可以.