签到成功

知道了

CNDBA社区CNDBA社区

Python获取文本文件两个关键字之间的内容并指定列

2022-03-03 08:32 1134 0 原创 Python
作者: hbhe0316
###############################################################################################################
# Script name: db2pd_immmdb_tab.py
# Script description: Get "db2pd -d <dbname> -tab" information
# Current Release Version: 1.0.0
# Script Owner: He ,Haibo
# Latest editor: He, Haibo
# Support platform:  Linux OS for Linux and windows Python Version 3.9.
# Change log: None
# Description:Date 2022/2/11
#
#
###############################################################################################################
import linecache
import re

str_start = "TCB Table Stats:"
str_end = "TCB Index Information:"


def fileTest(str_start, str_end):
    line_num = 0
    read_num = 0
    str_start_num = 0
    str_end_num = 0
    list1 = []
    #    msg = "There is no result"
    with open(r"C:/python/aaa.out", 'r') as file:
        for line in file.readlines():
            line_num = line_num + 1
            if str_start in line.strip():
                str_start_num = line_num
            if str_end in line.strip():
                str_end_num = line_num
                break
    for read_num in range(str_start_num + 1, str_end_num):
        theline = linecache.getline("C:/python/aaa.out",
                                    read_num)  # 第一个参数指读取的文件,第二个参数指文件的行数
        #     s = theline.strip().re.split(r"[#]+")[2]

        st = re.split(r"[ ]+", theline)
        st1 = st[1:4]
        st2 = st[11:14]
        st3 = st1 + st2
        print(st3)
#      print(s)


def main():
    fileTest(str_start, str_end)


if __name__ == "__main__":
    main()
http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804 http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804
http://www.cndba.cn/hbhe0316/article/107804 http://www.cndba.cn/hbhe0316/article/107804 http://www.cndba.cn/hbhe0316/article/107804

版权声明:本文为博主原创文章,未经博主允许不得转载。

Python

用户评论
* 以下用户言论只代表其个人观点,不代表CNDBA社区的观点或立场
hbhe0316

hbhe0316

关注

1.只有承认无知,才能装下新的东西; 2.进步来自一点点滴滴的积累; 3.广博让你更优秀,而专业让你无法替代; 4.挫折和失败能够转换为一种财富。

  • 889
    原创
  • 1
    翻译
  • 13
    转载
  • 24
    评论
  • 访问:1039386次
  • 积分:1523
  • 等级:核心会员
  • 排名:第6名
精华文章
    最新问题
    查看更多+
    热门文章
      热门用户
      推荐用户
        Copyright © 2016 All Rights Reserved. Powered by CNDBA · 皖ICP备2022006297号-1·

        QQ交流群

        注册联系QQ