linux 文件类型应用商店的小镜子我们在刚刚提到使用『ls -l』观察到第一栏那十个字符中,第一个字符为档案的类型。 除了常见的一般档案(-)(d),还有哪些种类的文件类型呢?· 正觃档案(regular file ): 就是一般我们在迚行存取的类型的档案,在由 ls -al 所显示出来的属怅方面...
分类:
系统相关 时间:
2014-07-29 13:30:08
阅读次数:
314
1. 反斜杠的困扰(The Backslash) 有时候需要匹配的文本带有'\',如'\python',因为正则表达式有些特殊字符有特殊意义,所以需要前面加上'\'来消除特殊意义,这里匹配的正则表达式是'\\python',这时候如果要编译这个正则表达式需要re.compile('\\\\pyth....
分类:
编程语言 时间:
2014-07-27 23:09:09
阅读次数:
308
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-07-26 01:37:06
阅读次数:
221
1.点..:代表一个字符(这个跟linux的正则表达式是不同的,那里.代表的是后面字符的一次或0次出现)2.转义\\或者r‘\‘:如r‘python\.org‘(对.符号的转义)3.^非或叫做排除如[^abc]:任何以非a,b,c的字符4.|选择符如python|perl(从python和perl选择一个)也可以:p(ython|erl)5.?可..
分类:
编程语言 时间:
2014-07-24 23:53:34
阅读次数:
292
一些奇怪的?unix 指令名字的由來 http://netlab.cse.yzu.edu.tw/~statue/freebsd/docs/unixfaq/node4.html ????grep = "Global Regular Expression Print" grep 源自 ed。用來列印所有符合某 pattern 的指令...
分类:
其他好文 时间:
2014-07-21 13:24:44
阅读次数:
169
最近在运行项目的时候,突然Xcode提示: XXX.app:?the?main?executable?or?Info.plist?must?be?a?regular?file?(no?symlinks,?etc.)
Command?/usr/bin/codesign?failed?with?exit?code?1 然后...
分类:
其他好文 时间:
2014-07-21 10:32:26
阅读次数:
242
Square City is a very easy place for people to walk around. The two-way streets run North-South or East-West dividing the city into regular blocks. Most street int...
分类:
其他好文 时间:
2014-07-20 22:33:53
阅读次数:
295
Description
We give the following inductive definition of a “regular brackets” sequence:
the empty sequence is a regular brackets sequence,if s is a regular brackets sequence, then (s) and [s]...
分类:
其他好文 时间:
2014-07-19 23:42:40
阅读次数:
258
经常copy网上的代码,但是代码中总有空行,使用VS格式化代码了,还是没有方法,如果让代码变得紧凑一些呢?答案:用UltraEdit【我用的是这个编辑器,好像editplus不行,不知道了,大家试试】打开文件后,选择Search菜单的Replace命令。在Replace对话框中,选中Regular ...
分类:
其他好文 时间:
2014-07-18 20:10:28
阅读次数:
355
Problem Description
Adam and Eve play a card game using a regular deck of 52 cards. The rules are simple. The players sit on opposite sides of a table, facing each other. Each player gets k cards f...
分类:
其他好文 时间:
2014-07-17 20:17:43
阅读次数:
381