以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 两个字符串如何比较? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=56625) |
-- 作者:yqwllm -- 发布时间:2014/9/10 8:01:00 -- 两个字符串如何比较? mima=\'123456\' mima0=\'123457\' if mima=mima0
messagebox.show("RIGHT")
OR compare(mima,mima0,false) else
messagebox.show("ERROR") end if 报错,请教!!! |
-- 作者:Bin -- 发布时间:2014/9/10 8:31:00 -- if mima=mima0
messagebox.show("RIGHT") else
messagebox.show("ERROR") end if
|
-- 作者:yqwllm -- 发布时间:2014/9/10 9:15:00 -- |
-- 作者:yqwllm -- 发布时间:2014/9/10 9:18:00 -- 报错,没有可访问的“="可以用这些参数调用! |
-- 作者:有点甜 -- 发布时间:2014/9/10 9:20:00 -- Dim mima = "123456" Dim mima0 = "123457" If mima=mima0 messagebox.show("RIGHT") Else messagebox.show("ERROR") End If |