西西軟件園多重安全檢測(cè)下載網(wǎng)站、值得信賴的軟件下載站!
西西首頁 電腦軟件 安卓軟件 電腦游戲 安卓游戲 排行榜 專題合集

TXT文件按條件批量刪除行工具

Python版
  • TXT文件按條件批量刪除行工具Python版
  • 軟件大小:8.6M
  • 更新時(shí)間:2021-08-02 07:58
  • 軟件語言:中文
  • 軟件廠商:
  • 軟件類別:國產(chǎn)軟件 / 免費(fèi)軟件 / 文本編輯
  • 軟件等級(jí):3級(jí)
  • 應(yīng)用平臺(tái):WinXP, Win7, win8
  • 官方網(wǎng)站:暫無
  • 應(yīng)用備案:
好評(píng):50%
壞評(píng):50%

軟件介紹

TXT文件按條件批量刪除行工具,由論壇用戶通過Python語言編寫的一個(gè)TXT文件處理工具,能實(shí)現(xiàn)指定行批量刪除功能。TXT文件按條件批量刪除行能批量指定目標(biāo)行進(jìn)行刪除,減少了用戶的時(shí)間,提高了工作效率。經(jīng)常進(jìn)行文本編輯的朋友們可以下載試試。

TXT文件按條件批量刪除行工具

軟件功能:

批量刪除行含關(guān)鍵字或詞的行(多個(gè)關(guān)鍵字/詞中間用空格隔開)

批量刪除空行

批量字符小于多少(可設(shè)定)刪除行

使用方法:

點(diǎn)擊打開文件批量選擇TXT文件。

需要的功能前打勾,并配置。

點(diǎn)擊【開始 】即可進(jìn)行轉(zhuǎn)換。

最后會(huì)生成原文件名+_new.txt的文件。

源碼一覽:

import os

import tkinter

from tkinter import ttk, filedialog, messagebox  # 有Combobox、LabelFrame 組件時(shí)需要本語句

FilePaths = ()

def getTxtFiles():

    global FilePaths

    files = filedialog.askopenfilenames(filetypes=[('text files', '.txt')])

    if files:

        FilePaths = files

        # print(FilePaths)

        for f_name in files:

            ctrl_FileListBox.insert('end', f_name)

            ctrl_FileListBox.insert(tkinter.INSERT, '\n')

    else:

        messagebox.showinfo(title='提示', message='沒有選擇任何文件!')

def KeyWordScan(keys, s):

    key_words = keys.split(" ")

    t_f = False

    for key_word in key_words:

        if key_word in s:

            t_f = True

    return t_f

def ctrl_StartBtn_clicked():

    has_key_words = int_CheckBox1.get()

    key_words = str_KeyWord.get()

    has_empty_line = int_CheckBox2.get()

    has_N = int_CheckBox3.get()

    n = str_KeyNum.get()

    for file in FilePaths:  # 循環(huán)遍歷文件

        s_file = open(os.path.splitext(file)[0]+"_new"+os.path.splitext(file)[1], 'w+')  # 文件保存位置

        f_lines = open(file, encoding='utf8').readlines()  # 打開文件,讀入每一行

        for s in f_lines:  # s: 每一行的內(nèi)容

            # 操作1

            if has_key_words:

                if KeyWordScan(key_words, s):

                    continue

            # 操作2

            if has_empty_line:

                if len(s.strip()) == 0:

                    continue

            # 操作3:

            if has_N:

                if len(s.strip()) < int(n):

                    continue

            s_file.write(s)

        s_file.close()  # 關(guān)閉文件

root = tkinter.Tk()  # 設(shè)定窗體變量

root.geometry('450x300')  # 格式('寬x高+x+y')其中x、y為位置

root.title('TxT文件處理助手V0.1 By 52poje Loker')

ctrl_Frame1 = ttk.LabelFrame(root, text='選項(xiàng)')

ctrl_Frame1.place(x=14, y=72, width=388, height=101)

ctrl_StartBtn = tkinter.Button(root, text='確定', font=('宋體', '9'),

                               command=ctrl_StartBtn_clicked)  # 可在括號(hào)內(nèi)加上調(diào)用函數(shù)部分 ,command=ctrl_StartBtn_clicked

ctrl_StartBtn.place(x=22, y=223, width=72, height=29)

ctrl_QuitBtn = tkinter.Button(root, text='取消', font=('宋體', '9'))  # 可在括號(hào)內(nèi)加上調(diào)用函數(shù)部分 ,command=ctrl_QuitBtn_clicked

ctrl_QuitBtn.place(x=108, y=223, width=72, height=29)

ctrl_FileListBox = tkinter.Text(root, font=('宋體', '9'))

ctrl_FileListBox.place(x=14, y=7, width=260, height=38)

ctrl_Scrollbar1 = tkinter.Scrollbar(root, command=ctrl_FileListBox.xview, orient=tkinter.HORIZONTAL)

ctrl_Scrollbar1.place(x=14, y=46, width=261, height=16)

ctrl_Scrollbar2 = tkinter.Scrollbar(root, command=ctrl_FileListBox.yview, orient=tkinter.VERTICAL)

ctrl_Scrollbar2.place(x=275, y=7, width=16, height=39)

ctrl_FileListBox.config(xscrollcommand=ctrl_Scrollbar1.set, yscrollcommand=ctrl_Scrollbar2.set, wrap='none')

int_CheckBox1 = tkinter.IntVar()  # 綁定變量

ctrl_CheckBox1 = tkinter.Checkbutton(ctrl_Frame1, text='刪除行含關(guān)鍵字或詞的行', variable=int_CheckBox1, font=('宋體', '9'))

ctrl_CheckBox1.place(x=14, y=14, height=22)  # 考慮到對(duì)齊問題,不列入寬度,需要時(shí)手動(dòng)加入 width=130

ctrl_CheckBox1.deselect()  # 默認(rèn)為未選中狀態(tài)

Ctrl_Label1 = tkinter.Label(ctrl_Frame1, text="關(guān)鍵字:")

Ctrl_Label1.place(x=180, y=14, width=55, height=22)

str_KeyWord = tkinter.StringVar()  # 綁定變量

ctrl_KeyWord = tkinter.Entry(ctrl_Frame1, textvariable=str_KeyWord, font=('宋體', '9'))

ctrl_KeyWord.place(x=230, y=14, width=150, height=22)

int_CheckBox2 = tkinter.IntVar()  # 綁定變量

ctrl_CheckBox2 = tkinter.Checkbutton(ctrl_Frame1, text='刪除空行', variable=int_CheckBox2, font=('宋體', '9'))

ctrl_CheckBox2.place(x=14, y=36, height=22)  # 考慮到對(duì)齊問題,不列入寬度,需要時(shí)手動(dòng)加入 width=130

ctrl_CheckBox2.deselect()  # 默認(rèn)為未選中狀態(tài)

int_CheckBox3 = tkinter.IntVar()  # 綁定變量

ctrl_CheckBox3 = tkinter.Checkbutton(ctrl_Frame1, text='刪除字符小于N的行', variable=int_CheckBox3, font=('宋體', '9'))

ctrl_CheckBox3.place(x=14, y=58, height=22)  # 考慮到對(duì)齊問題,不列入寬度,需要時(shí)手動(dòng)加入 width=130

ctrl_CheckBox3.deselect()  # 默認(rèn)為未選中狀態(tài)

Ctrl_Label = tkinter.Label(ctrl_Frame1, text="N =")

Ctrl_Label.place(x=220, y=58, width=22, height=22)

str_KeyNum = tkinter.StringVar()  # 綁定變量

ctrl_KeyNum = tkinter.Entry(ctrl_Frame1, textvariable=str_KeyNum, font=('宋體', '9'))

ctrl_KeyNum.place(x=250, y=58, width=22, height=22)

ctrl_OpenFileBtn = tkinter.Button(root, text='選擇文件',

                                  font=('宋體', '9'),

                                  command=getTxtFiles)  # 可在括號(hào)內(nèi)加上調(diào)用函數(shù)部分 ,command=ctrl_OpenFileBtn_clicked

ctrl_OpenFileBtn.place(x=305, y=18, width=72, height=29)

# str_OutputPath = tkinter.StringVar()  # 綁定變量

# ctrl_OutputPath = tkinter.Entry(root, textvariable=str_OutputPath, font=('宋體', '9'))

# ctrl_OutputPath.place(x=14, y=187, width=209, height=22)

root.mainloop()

軟件標(biāo)簽: TXT文件 處理 文本工具

其他版本下載

發(fā)表評(píng)論

昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
查看所有(0)條評(píng)論 > 字?jǐn)?shù): 0/500

TOP
軟件下載