Home >Web Front-end >HTML Tutorial >用python正则如何去掉下面文本三个<! >_html/css_WEB-ITnose

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

WBOY
WBOYOriginal
2016-06-24 11:23:491162browse

####问题:用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了

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn