正则表达式 字符串
例如:
<link rel="stylesheet" href="/images/style.css" />
<SCRIPT language=JavaScript type=text/JavaScript>
//改变图片大小
function resizepic(thispic)
{
if(thispic.width>400) thispic.width=400;
}
//无级缩放图片大小
function bbimg(o)
{
var zoom=parseInt(o.style.zoom, 10)||100;
zoom+=event.wheelDelta/12;
if (zoom>0) o.style.zoom=zoom+'%';
return false;
}
</SCRIPT>
<script type="text/javascript">
我想要匹配
<link rel="stylesheet" 到 return false; 之间 包括这连个字符串的正则!
大家帮我写下
[解决办法]
LZ这需求写得。。。
难道你是要
<link rel="stylesheet" href="/images/style.css" />
<SCRIPT language=JavaScript type=text/JavaScript>
//改变图片大小
function resizepic(thispic)
{
if(thispic.width>400) thispic.width=400;
}
//无级缩放图片大小
function bbimg(o)
{
var zoom=parseInt(o.style.zoom, 10)||100;
zoom+=event.wheelDelta/12;
if (zoom>0) o.style.zoom=zoom+'%';
return false;
这么一大段?后面连‘}’也不要了?
要真是这样就:
import rea = '''<link rel="stylesheet" href="/images/style.css" /><SCRIPT language=JavaScript type=text/JavaScript>//改变图片大小function resizepic(thispic){if(thispic.width>400) thispic.width=400;}//无级缩放图片大小function bbimg(o){ var zoom=parseInt(o.style.zoom, 10)||100; zoom+=event.wheelDelta/12; if (zoom>0) o.style.zoom=zoom+'%'; return false;}</SCRIPT><script type="text/javascript">'''reg = re.compile(r'(<link.+?return false;)', re.I | re.S)match = reg.search(a)if match is not None: print match.groups()[0]