vb读取TXT中的日期数据 格式是这样的(yyyy--mm--dd)
3个回答
展开全部
format("数据","yyyy-mm-dd")
读数据,然后判断s=format(s,"yyyy-mm-dd")
满足则输出
读数据,然后判断s=format(s,"yyyy-mm-dd")
满足则输出
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把txt中的内容贴一小段出来
更多追问追答
追问
157440113.000 2011-12-28 05:21:52 10 1525.7776 1532.6006 1538.5222 1541.6979 1544.5258 1550.6914 1553.0543 1556.6182 1558.8635 1561.7225 我想提取其中的日期
追答
private sub command1_click()
dim s as string,d() as string,i as integer
open "c:\1.txt" for input as #1
while not eof(1)
line input #1,s
d=split(s,chr(9))
for i=0 to ubound(d)
if IsDate(d(i)) then debug.print d(i)
next
wend
close #1
end sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询