TXT檔案用法大全 薦 按鍵精靈

2021-09-09 01:20:49 字數 1637 閱讀 6474

(3)讀取txt檔案指定某一行的第?到第?個字

uservar t=2 "讀出txt第幾行文字"

uservar i=5 "從第幾個字開始讀取"

uservar o=8 "結束讀取到第幾個字"

text = plugin.file.readfileex("路徑\檔名.txt")

txtarray=split(text,"|")

i=i-1

o=o-i:t=t-1

for o

str=str & mid(txtarray(t),1+i,1)

i=i+1

endwhile 

messagebox str

endscript

複製**

(4)新建乙個txt檔案

set fso=createobject("scripting.filesystemobject")

const forwriting=2

const forreading=1

set myfile=fso.createtextfile("路徑\檔名.txt")

複製**

(5)判斷乙個檔案是否存在

isfile = plugin.file.isfileexit("路徑\檔名.txt")

if isfile = true

messagebox "找到"

else 

messagebox "沒找到"

endif 

複製**

(6)給txt檔案寫入內容

set fso=createobject("scripting.filesystemobject")

set myfile=fso.createtextfile("路徑\檔名.txt")

myfile.writeline("內容")

call plugin.file.writefileex("路徑\檔名.txt", "內容")

複製**

(7)讀取txt檔案指定某一行內容

text = plugin.file.readfileex("路徑\檔名.txt")

txtarray=split(text,"|")

// 顯示第5行,就寫 txtarray(4) 。 顯示第6行。就寫 txtarray(5)

messagebox txtarray(0)

複製**

(8)讀取txt檔案全部內容

i=0text = plugin.file.readfileex("路徑\檔名.txt")

txtarray=split(text,"|")

while len(txtarray(i))>=1

re=re & txtarray(i)

i=i+1

endwhile 

messagebox re

複製**

(9)讀取txt檔案一共多少行

i=0text = plugin.file.readfileex("路徑\檔名.txt")

txtarray=split(text,"|")

while len(txtarray(i))>=1

i=i+1

endwhile 

messagebox i

複製**

txt檔案用法大全【薦】

txt檔案中按日期提取資料

old.txt 2695350881 20190204 00250990da50 2553358 714165 0 0 0 0 1549323678 0 n 0 0 0 提取表頭 head n 1 old.txt new.txt按日期提取 可指定多少行,可指定多個日期 檢視某個日期記錄的行數 gre...

python 讀txt檔案,按 , 分割每行資料

fname 新建資料夾 yob2010.txt 資料夾路徑 with open fname,r encoding utf 8 as f for line in f.readlines 按行讀取每行 print line 1 split 切片去掉換行符,再以 分割字串 得到乙個列表 s i 1 spl...

按行拼接兩個txt檔案的python實現

如果在mariadb中複製了一列到txt上,需要在每行後面追加乙個符號 f open 2.txt o open 2.txt w for line in f line2 str line.strip r n n o.write line2 這個 的效果是 2.txt 中內容中某一行是429491769...