欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

用python正则如何去掉下面文本三个_html/css_WEB-ITnose

程序员文章站 2022-06-12 18:47:16
...
####问题:用python正则如何去掉下面文本三个###########
#####################
str = '''贪心选择边DB,不构成回路,结束。
图1(a)的最小生成树如图1(b)所示。最小生成树也可用在网络路由中。





'''


回复讨论(解决方案)



#-*- coding: utf-8 -*-
#上面的字符编码说明非常重要,否则代码内有中文会报错
import sys
import json
import urllib
import urllib2
import cookielib
import time
import re


try:
f = open('test', 'r+')
content = f.read()
f.close()

matchReg = re.compile(r'(\s.)', re.DOTALL)
content = re.sub(matchReg, '', content)
print content

f = open('test', 'w')
f.write(content)
f.close()

except Exception as e:
print e

谢谢两位大神,都pass了