本章学习vi编辑器中的全局替换命令。通过全局替换命令,可以自动替换文件中所有出现过的某个单词。全局替换一般会用到两个ex命令:" :g "(global,全局)," :s "(substitute,替换)。
替换命令:
替换命令的语法如下: " :s/old/new/ ",该命令会将当前这一行中第一个出现的old模式替换为new。其中斜线用来分隔命令的各部分(如果斜线位于该命令的最后一个字符,...
分类:
系统相关 时间:
2014-12-27 15:15:10
阅读次数:
285
在python中Template可以将字符串的格式固定下来,重复利用。Template属于string中的一个类,要使用他的话可以用以下方式调用:from string import Template我们使用以下代码:>>> s = Template('There ${moneyType} is ....
分类:
编程语言 时间:
2014-12-19 11:48:52
阅读次数:
203
http://projects.unbit.it/uwsgi/wiki/Example [root@i projectname]# cat django_wsgi.pyimport os#substitute mysite with the name of your project !!!os.e....
分类:
Web程序 时间:
2014-12-18 01:39:10
阅读次数:
191
重构可以把复杂的东西分解成一个个简单的小块。但有时候,你必须壮士断腕删掉整个算法,用简单的算法来取代,如果你发现做一件事情可以有更清晰的方式,那你完全有理由用更清晰的方式来解决问题。如果你开始使用程序库,发现其中库提供的功能特性和你的代码重复,那么你也应该改变你原来的算法。或者当你想要修改原先的算法...
分类:
其他好文 时间:
2014-12-11 11:50:16
阅读次数:
155
y:to substitute this matchn:to skip this matcha:to substitute this and all remaining matchesq:to quit the commandl:to substitute this match and quit (...
分类:
系统相关 时间:
2014-11-22 20:17:27
阅读次数:
277
简单地说,就是仅通过插入(insert)、删除(delete)和替换(substitute)个操作将一个字符串s1变换到另一个字符串s2的最少步骤数。熟悉算法的同学很容易知道这是个动态规划问题。
其实一个替换操作可以相当于一个delete+一个insert,所以我们将权值定义如下:
I (insert):1
D (delete):1
S (substitute):1
...
分类:
编程语言 时间:
2014-11-13 22:39:18
阅读次数:
257
SAS macro variablesenable you to substitute text in your SAS programs(替代作用,和c++的 #define 差不多)When you reference a macro variable in a SAS program, SAS...
分类:
其他好文 时间:
2014-11-13 15:55:51
阅读次数:
2324
Linux系统中,有时候普通用户有些事情是不能做的,除非是root用户才能做到。这时就需要用su命令临时切换到root身份来做事了。 su:substitute['s?bst?tju?t]代替 usersu 的语法为:su [OPTION选项参数] [用户]-, -l, --login 登录并改变到...
分类:
系统相关 时间:
2014-11-10 09:49:07
阅读次数:
353
1. 果冻: 西方管理学大师戴明曾经说:“Eliminate numerical goals, numerical quotasand management by objectives. Substitute (that with) leadership”,意思就是说(在团队中)要消除以数字定义的目...
分类:
其他好文 时间:
2014-10-14 01:00:57
阅读次数:
171
OCP:open-closed principle 不可修改 可扩展LSP: liskov substitute principle For a function,a subtype must be able to substitute its base type一个模型,如果孤立地看,并不具有真正...
分类:
其他好文 时间:
2014-10-07 21:23:44
阅读次数:
167