主頁 > 知識庫 > vbs刪除文本文件的行的函數(shù)

vbs刪除文本文件的行的函數(shù)

熱門標(biāo)簽:天津智能外呼系統(tǒng)排名 智云億呼電話機(jī)器人 龍巖400電話申請 外呼系統(tǒng)群 企業(yè)400電話辦理價錢低 外呼系統(tǒng)說話聲音小怎么辦 上海辦理400電話選號 機(jī)器人打電銷適用于美業(yè)嗎 墨西哥地圖標(biāo)注app
Delete Line Function
復(fù)制代碼 代碼如下:

Function DeleteLine(strFile, strKey, LineNumber, CheckCase)
'DeleteLine Function by TomRiddle 2008

'Remove line(s) containing text (strKey) from text file (strFile)
'or
'Remove line number from text file (strFile)
'or
'Remove line number if containing text (strKey) from text file (strFile)

'Use strFile = "c:\file.txt" (Full path to text file)
'Use strKey = "John Doe" (Lines containing this text string to be deleted)
'Use strKey = "" (To not use keyword search)
'Use LineNumber = "1" (Enter specific line number to delete)
'Use LineNumber = "0" (To ignore line numbers)
'Use CheckCase = "1" (For case sensitive search )
'Use CheckCase = "0" (To ignore upper/lower case characters)


Const ForReading=1:Const ForWriting=2
Dim objFSO,objFile,Count,strLine,strLineCase,strNewFile
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objFile=objFSO.OpenTextFile(strFile,ForReading)
Do Until objFile.AtEndOfStream
strLine=objFile.Readline
If CheckCase=0 then strLineCase=ucase(strLine):strKey=ucase(strKey)
If LineNumber=objFile.Line-1 or LineNumber=0 then
If instr(strLine,strKey) or instr(strLineCase,strkey) or strKey="" then
strNewFile=strNewFile
Else
strNewFile=strNewFilestrLinevbcrlf
End If
Else
strNewFile=strNewFilestrLinevbcrlf
End If
Loop
objFile.Close
Set objFSO=CreateObject("Scripting.FileSystemObject")
Set objFile=objFSO.OpenTextFile(strFile,ForWriting)
objFile.Write strNewFile
objFile.Close

End Function

使用方法:
DeleteLine "c:\1.txt", "", 1, 0
您可能感興趣的文章:
  • 使用VBS訪問外部文本文件一些方法和腳本實例代碼
  • 用vbs實現(xiàn)讀取文本文件的方法
  • 用vbscript實現(xiàn)從文本文件中刪除所有重復(fù)行的代碼
  • 用vbs對文本文件的內(nèi)容進(jìn)行排序
  • 用vbs實現(xiàn)對文本文件中的項計數(shù)
  • 用vbs讀取文本文件的最后一行
  • VBScript 文件操作代碼小結(jié)
  • VBS文本文件操作實現(xiàn)代碼

標(biāo)簽:承德 齊齊哈爾 青島 黃山 鄂爾多斯 麗水 阜新 錫林郭勒盟

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《vbs刪除文本文件的行的函數(shù)》,本文關(guān)鍵詞  vbs,刪除,文本,文件,的,行的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《vbs刪除文本文件的行的函數(shù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于vbs刪除文本文件的行的函數(shù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章