以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 连续相同三个以上字符串 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=188539) |
-- 作者:ZJZK2018 -- 发布时间:2023/9/26 11:28:00 -- 连续相同三个以上字符串 一个表中有二列数据,如何在同一行中有三个或四个以上连续字符串相同的数据,如有则true |
-- 作者:有点蓝 -- 发布时间:2023/9/26 11:35:00 -- 判断包含关系:http://www.foxtable.com/webhelp/topics/1422.htm dim s1 as string = 第一列数据 dim s2 as string = 第二列数据 if s1.Contains(s2) then msgbox("有包含相同的数据")
|