var reg = /(https:\/\/|https:\/\/)((\w|=|\?|\.|\/|&|-)+)/g;
content = content.replace(reg, "<a href='$1$2'>$1$2</a>[......]
栏目归档: Program Code
jQuery-获取元素距离顶部高度
$(selector).offset().top[......]
PHP文件内设置session生存周期
PHP文件中指定session位置
Python读取文件信息-类似PHP-file_get_contents
本地文件
open(filename).read()
网络地址
# Python 2
import urllib2
urllib2.urlopen(url).read()# Python 3import urllib.requesturllib.request.urlop[......]
Python2下载图片并保存-类似PHP-file_put_contents
根据图片url下载的链接下载图片并保存。
import urllib2
piccontent=urllib2.urlopen(图片链接).read()
f = open(文件名, 'wb')f.write(piccontent)f.close()
参[……]
Python2中解压gzip数据
有些网站开启了gzip压缩,访问回来的数据是压缩的,需要解压,故,附上解压的例程:
import StringIO, gzip
compressedstream = StringIO.StringIO(要解压的数据)
gziper = gzip.GzipFile(file[......]
Python中查找字符串函数-类似PHP-strpos|strrpos
习惯用php了,Python中查找字符串的函数是什么呢?正向查找find,倒找字符串rfind。代码示例:
pos = haystack.find(needle)
pos = haystack.find(needle, offset)
pos = haystack.rf[......]
Python2-Post请求gzip数据
好吧,因为要改个采集脚本,所以学习了一下Python中如何post gzip压缩数据。
import zlib
import urllib2
req = urllib2.Request(url,zlib.compress(你要post的数据));req.add_heade[......]
如何禁止百度转码
有些网站本身是响应式的,移动端访问不需要百度进行转码,此时需要加入些代码禁止百度转码,方法如下:
head里加入如下代码即可:
<meta http-equiv="Cache-Control" content="no-transfo[......]