从规则文本文件中提取列字段

Posted sxinfo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从规则文本文件中提取列字段相关的知识,希望对你有一定的参考价值。

    test.txt内容如下:
1|name1|agg1|add1|phone1|card1|
2|name2|agg2|add2|phone2|card2|

    如何提取第4列的内容,即add1、add2

 1 def iterdatainfile(filename, spliter=	):
 2     with open(filename, rt) as handle:
 3         for ln in handle:
 4             yield ln.split(spliter)
 5  
 6 focue, LF = 3, 
  #LF = 3:取第4列
 7 with open("output.txt", wt) as handle:
 8     handle.writelines([row[focue] + LF
 9                        for row in iterdatainfile(test.txt,spliter=|)])
10 
11 # 下面是显示提取到的内容
12 txtstr = open(output.txt)
13 a = txtstr.read()
14 print(a)

 



以上是关于从规则文本文件中提取列字段的主要内容,如果未能解决你的问题,请参考以下文章

excel提取单元格中的部分内容

【现学现忘&Shell编程】— 30.cut列提取命令

从 JSON 文件中提取字段,将其与纯文本文件匹配值进行比较,并从 JSON 文件中提取特定字段

从单个按钮从多个片段中提取数据

从 HTML 正文中提取文本片段(在 .NET 中)

从Python中的json文件中的特定字段中提取文本