gpt4 book ai didi

python - 解析 .txt 文件

转载 作者:太空宇宙 更新时间:2023-11-04 06:48:06 25 4
gpt4 key购买 nike

我有一个 .txt 文件,例如:

Symbols from __ctype_tab.o:

Name Value Class Type Size Line Section

__ctype |00000000| D | OBJECT |00000004| |.data
__ctype_tab |00000000| r | OBJECT |00000101| |.rodata


Symbols from _ashldi3.o:

Name Value Class Type Size Line Section

__ashldi3 |00000000| T | FUNC |00000050| |.text

我如何解析这个文件并获得 FUNC 类型的函数?另外,我如何从这个 txt 中解析和提取 .o 名称?

我如何通过逐列解析或其他方式获取它们。

我需要立即帮助...像往常一样等待合适的解决方案

最佳答案

for line in open('thefile.txt'):
fields = line.split('|')
if len(fields) < 4: continue
if fields[3].trim() != 'FUNC': continue
dowhateveryouwishwith(line, fields)

关于python - 解析 .txt 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/818936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com