- 博客(3)
- 资源 (2)
- 收藏
- 关注
原创 Reverse Words in a String 字符串中单词反转
class Solution: # @param s, a string # @return a string def reverseWords(self, s): s1=s.strip() if len(s1)==0: return '' s2=s1.split() #
2014-09-24 18:56:44 303
原创 match,search,findall,finditer及group用法
match(pattern,string,flags=0) 尝试用正则表达式模式pattern匹配字符串string,flags是
2014-09-19 21:32:16 437
原创 抓取网页标签之间的中文字
#!/usr/bin/env python import urllib2 import re file_url='http://money.163.com/forex/' f=urllib2.urlopen(file_url).read() p=re.compile(r'(.*?)',re.U|re.S) results=p.findall(f) for result in re
2014-09-18 22:09:02 385
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人