My MSN

Click OK to add this content

 
Content Preview: rss
-+又开始地震了
154 days ago
三点二十分左右,成都震感明显
-+看个变形金刚么,又不是多有水准的片子
159 days ago
看过变形金刚一,除了特效的堆叠以外,情节故事都一无是处,正是先下风行的电影纯特效派。除了能勾起对童年时代的回忆以外,这个片子真的很逊。 昨天路过万达,琢磨着是不是随便看个电影,正好就碰上了变形金刚二上映,人太多,居然买不上票。我郁闷的不行。 没看成二,但是从一来看,我对它也没有什么期待。看到昨天那种轰动的场面,不由得我不感叹,现在电影不是拍出来的,是靠特效“做”出来的,再靠宣传吹吹,什么烂片也能变成“大片”。
-+夏日晚宴
164 days ago
烂肉焖豌豆: 香葱拌豆腐干: 生菜番茄煎蛋汤: 白米饭: 最后再来个全家福: 两菜一汤,味道差强人意,对于一个不懂厨艺的三十岁男人来说,已经是勉为其难了!
-+一只杯子
168 days ago
碎了 一切幻想 破灭了
-+VS的正则表达式工具还不错
173 days ago
今天要对一组文本数据做处理,去掉一些不必要的,自然就想到了使用正则表达式。首先是用UltraEdit来做,发现很不方便,支持的规则比较少。例如,查找两位数字,只能用[0-9][0-9],不能使用类似[0-9]^2的模式。而且,不能对查找的字串分组,例如这样的用法是不合法的{12}+。 要实现我的目的,用这样的语法,匹配模式会写的很啰嗦,决定换个工具试试。选了M$的VS,一查才发现,功能还蛮丰富的,以前干这活都用的EditPlus,用VS看来会更方便一点。抄录MSDN相关部分如下: Expression Syntax Description Any character . Matches any single character except a line break. Zero or more * Matches zero or more occurrences of the preceding expression, making all possible matches. One or more + Matches at least one occurrence of the preceding expression. Beginning of line ^ Anchors the match string to the beginning of a line. End of line $ Anchors the match string to the end of a line. Beginning of word < Matches only when a word begins at this point in the text. End of word > Matches only when a word ends at this point in the text. Line break \n Matches a ...
© 2009 MicrosoftMicrosoft