篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python テキストのパース(\ S +?)\ s +?(\ S +?)相关的知识,希望对你有一定的参考价值。
# -*- coding: utf-8 -*-
import os, sys, re
def main():
with open(sys.argv[1]) as f:
for line in f:
line = line.strip()
match = re.search(r"^(\S+?)\s+?(\S+?)$", line)
if match is None:
pass
else:
match_1 = match.group(1)
match_2 = match.group(2)
print(match_1 + '\t' + match_2)
if __name__ == '__main__':
main()
以上是关于python テキストのパース(\ S +?)\ s +?(\ S +?)的主要内容,如果未能解决你的问题,请参考以下文章