本帖最后由 CrLf 于 2015-10-21 21:09 编辑
| dim title,y | | title = CreateObject("scripting.filesystemobject").opentextfile("d:1.txt").readall | | y=split(title,vbcrlf) | | stepnum=100 | | str = "" | | for i=stepnum-1 to ubound(y) step stepnum | | str = str & y(i) & vbcrlf | | next | | msgbox strCOPY |
|