以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- like 能否用于字符串列表?请教高手 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=130748) |
-- 作者:puresky -- 发布时间:2019/1/31 9:53:00 -- like 能否用于字符串列表?请教高手 如 if e.datarow("疾病诊断") like ["流感",“肝炎”] then |
-- 作者:有点甜 -- 发布时间:2019/1/31 10:02:00 -- 不可以,要这样
if e.datarow("疾病诊断") like "*流感*" OrElse e.datarow("疾病诊断") like "*肝炎*" then
|