例如查找ParentPath字段里是否有某个id值(2)
zyz_split(dr("ParentPath"),"2")="true"
之所以不用
instr(dr("ParentPath"),"2")>0
因为如22,23,32都会判断是真
函数zyz_split避免了ParentPath里面有如22,22,23,32等
有,返回字符串true
无,返回字符串false
function zyz_split(str1,str2)
t=split(str1,",")
for i=0 to ubound(t)
if int(t(i))=int(str2) then
zyz_split="true"
exit function
end if
zyz_split="false"
next
end function
上一篇>>已经没有了
下一篇>>jmail组件发邮件
Copyright © 2016 Allister All Rights Reserved