按键精灵逐行读取文本并复制粘贴?
比如说我要读取C:盘里的数字.txt数字.txt里的内容是123456567864236579622怎样依次读取第一行.第二行,第三行的数字并且依次复制到Excel的表格...
比如说我要读取C:盘里的 数字.txt 数字.txt里的内容是
123456
56786
42365
79622
怎样依次读取第一行.第二行,第三行的数字并且依次复制到Excel的表格内? 展开
123456
56786
42365
79622
怎样依次读取第一行.第二行,第三行的数字并且依次复制到Excel的表格内? 展开
展开全部
path = Plugin.file.SelectFile()
text = Plugin.File.ReadFileEx(path)
MyArray = split(text, "|")
Plugin.Office.OpenXls("c:\1.xlsx")
If UBound(MyArray) > 0 Then
For i=0 to Ubound(Myarray)-1 step 1
Call Plugin.Office.WriteXls(1, i + 1, 1, MyArray(i))
Delay 1000
Next
Call Plugin.file.CloseFile("c:\1.xlsx")
End If
text = Plugin.File.ReadFileEx(path)
MyArray = split(text, "|")
Plugin.Office.OpenXls("c:\1.xlsx")
If UBound(MyArray) > 0 Then
For i=0 to Ubound(Myarray)-1 step 1
Call Plugin.Office.WriteXls(1, i + 1, 1, MyArray(i))
Delay 1000
Next
Call Plugin.file.CloseFile("c:\1.xlsx")
End If
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询