vb 读取txt文本分割字符
怎么读取txt文本最后的|字符到text1中去文本格式1.我是中国人08:40|2.我是中国人08:41|3.我是中国人08:43|4.我是中国人08:45|5.我是中国...
怎么读取txt 文本最后的 | 字符到text1中去
文本格式
1.我是中国人 08:40|
2.我是中国人 08:41|
3.我是中国人 08:43|
4.我是中国人 08:45|
5.我是中国人 08:46|
6.我是中国人 08:48
最后结果
|5.我是中国人 08:46
Open 文件 For binary As #1
tmp=input(lof(1),1)
close#1
s=split(tmp,"|")
text1=s(ubound(s)-1)
怎么修改代码 展开
文本格式
1.我是中国人 08:40|
2.我是中国人 08:41|
3.我是中国人 08:43|
4.我是中国人 08:45|
5.我是中国人 08:46|
6.我是中国人 08:48
最后结果
|5.我是中国人 08:46
Open 文件 For binary As #1
tmp=input(lof(1),1)
close#1
s=split(tmp,"|")
text1=s(ubound(s)-1)
怎么修改代码 展开
4个回答
展开全部
for i = 0 to ubound(s)
s(i)="|" & s(i)
next i
text1=s(ubound(s)-1)
是这个意思吗?
s(i)="|" & s(i)
next i
text1=s(ubound(s)-1)
是这个意思吗?
追问
最后结果
|5.我是中国人 08:46
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
s=split(tmp,"|")
if (ubound(s)>1)
text1="|" & s(ubound(s)-1)
else
text1=s(ubound(s)-1)
end if
if (ubound(s)>1)
text1="|" & s(ubound(s)-1)
else
text1=s(ubound(s)-1)
end if
追问
最后结果
|5.我是中国人 08:46
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
text1="|" & s(ubound(s)-1)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询