Board logo

标题: [原创代码] Python提取一组数据的第一个字符以及第一个到第三个字符 [打印本页]

作者: codegay    时间: 2015-12-19 06:06     标题: Python提取一组数据的第一个字符以及第一个到第三个字符

  1. """
  2. python正则提取一组数据的第一个字符以及第一个到第三个字符
  3. http://www.bathome.net/thread-38635-1-1.html
  4. 依山居 3:43 2015/12/19
  5. """
  6. import re
  7. with open("data.txt") as f:
  8.     txt=f.read()
  9.    
  10. rep=re.compile("(\w|~{1})(\w*)")
  11. result1=re.sub(rep,"\\1",txt)
  12. with open("result1.txt","w+") as f:
  13.     f.write(result1)
  14. rep=re.compile("(\w{3})(\w*)")
  15. result2=rep.sub("\\1",txt)
  16. with open("result2.txt","w+") as f:
  17.     f.write(result2)
  18.         
复制代码

作者: 依山居    时间: 2015-12-19 06:29

  1. """
  2. python切片提取一组数据的第一个字符以及第一个到第三个字符.py
  3. http://www.bathome.net/thread-38635-1-1.html
  4. 依山居 1:02 2015/12/17
  5. """
  6. with open("data.txt") as f:
  7.     txt=[r.rstrip().split() for r in f.readlines()]
  8.    
  9. result1=''
  10. result2=''
  11. for r in txt:
  12.     sstr1=''
  13.     sstr2=''
  14.     for s in r:
  15.         if len(s)>3:
  16.             sstr1+=s[0]+" "
  17.             sstr2+=s[0:3]+" "
  18.         else:
  19.             sstr1+=s
  20.             sstr2+=s
  21.     result1+=sstr1+"\n"
  22.     result2+=sstr2+"\n"
  23. with open("result1.txt","w+") as f:
  24.     f.write(result1)
  25. with open("result2.txt","w+") as f:
  26.     f.write(result2)
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2