Foxtable(狐表)用户栏目专家坐堂 → [求助]字符数组处理


  共有2680人关注过本帖树形打印复制链接

主题:[求助]字符数组处理

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2023/9/14 11:29:00 [显示全部帖子]

利用字典
dim dict as new dictionary(of string,string)
for i as integer = 0 to hths.length - 1
 if dict.containskey(hths(i)) then
dict(hths(i)) = dict(hths(i)) & "_" & fphms(i)
else
dict.add(hths(i), fphms(i))
end if
next

for each key as string in doct.keys
msgbox(key & ":" & dict(ke))
next

 回到顶部