2012年8月23日 星期四

ubuntu 12.04 固定ip 與 dns

原先dns的設定是在/etc/resov.conf下

但每次都會被洗掉,且系統也不建議直接修改

2012年8月3日 星期五

python regular expression "match" vs "search"

常常弄混re.match 與 re.search的差別
寫下來以免又忘了。

re.match("pattern","string")是比對該字串的「開頭」是否符合該表示式

re.search("pattern", "string")則尋找string中任何位置是否有相符者

兩者皆回傳MatchObject,若找不到則回傳None