目前分類:python (2)

瀏覽方式: 標題列表 簡短摘要
http://code.activestate.com/recipes/499314/

import re
starts = [match.start() for match in re.finditer(re.escape(S), T)]

finditer() won't find overlapping strings. The regular expression methods, including finditer(), find non-overlapping matches. To find overlapping matches you need a loop.

wenching520 發表在 痞客邦 留言(0) 人氣()

  • Apr 13 Sun 2008 10:45
  • PYTHON

PyTUG (Python Taiwan User Group);Python 台灣使用者群組
http://wiki.python.org.tw/

Python 線上書
http://jsp.dfes.tpc.edu.tw:8080/py-book.jsp

Python 精要參考 (簡)
http://wiki.woodpecker.org.cn/moin/WeiZhong

資料收集 (簡)
http://www.chinesepython.org/pythonfoundry/pythondoc/Readme.gb2312.html

wenching520 發表在 痞客邦 留言(0) 人氣()