When we need pass a variable name to a procedure, we can use upvar. upvar like reference in C++, we can changes the variable as we like.
the syntax of upvar is:
upvar ?level? varName localvar
工作-生活-记录
When we need pass a variable name to a procedure, we can use upvar. upvar like reference in C++, we can changes the variable as we like.
the syntax of upvar is:
upvar ?level? varName localvar
现在一般教本语言(perl python tcl)中都会提供字典(数组)这样的数据结构,
这种结构使用起来最为灵活方便,但是也最不容易掌握。
Continue reading “tcl 中array做为函数参数传递的调用方法”
1 tcl>set drv 5
2 tcl>set foo "oai21_e5m_hvt"
3 tcl>regsub {_(_v\d)?e(\d+)} $foo "_ \1 e$drv" goo
4 1
5 tcl>echo $goo
6 oai21_e5m_hvt
7 tcl>echo $foo
8 oai21_e5m_hvt
9 tcl> string match $foo $goo
10 0
11 tcl>string length $foo
12 13
13 tcl>string length $goo
14 14
15 tcl>string index $goo 6
16
17 tcl>string index $foo 6
18 e 19 tcl>
这个插件可以使firefox直接打开CHM文件。
下载地址:
https://addons.mozilla.org/en-US/firefox/addon/3235
使用方法:
1、 File -> Open Chm File
2、View -> Sidebar -> CHM Reader
Continue reading “FireFox CHM 插件”
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Continue reading “The Zen of Python (Python之神)”
== 介绍 ==
这篇文档所给出的编码约定适用于在主要的Python发布版本中组成标准库的Python
代码.请查阅相关的关于在Python的C实现中C代码风格指南的描述.
这篇文档改编自Guido最初的《Python风格指南》一文.
并从《Barry’s style guide》中添加了部分内容.
在有冲突的地方,Guide的风格规则应该是符合本PEP的意图
(译注:就是当有冲突时,应以Guido风格为准)
这篇PEP也许仍然尚未完成(实际上,它可能永远不会结束).
====正文开始====
这是邮件正文
====正文结束====
Continue reading “测试pdf附件”
this is in the attachment, and the file format is txt.This is in the mail body.
Continue reading “test how blogger will deal with attachment”
时间:周六(2007–8-18)下午两点
天气:艳阳高照(热啊)
交通:陪了我近三年的凤凰自行车
地点:愚园路1032弄--兴义路99号(上海世贸商城)
事件:参观上海书展
结果:不爽
P5EEx::Blue::perlstyle – P5EE 样式指导 P5EE 是 Perl 5 Enterprise Environment (企业型 Perl5 样式指导)的缩写。
在P5EE发行版中,包含的所有代码和文件都遵循了本文所述的样式。请注意:这些样式并不是要抑制你的创造力,而是想要使那些阅读到你代码的家伙们的生活变得更容易一些。他也可以用来解决分歧,避免个人间纠纷。 下面的这些约定适用于perl模块,web程序(CGI/mod_perl)以及命令行程序。当然,这些规则也在一定程度上适用于用P5EE写的perl代码。 注意,这些都是指导性的方针,不是必须遵守的规则。如果在这里你真的需要违反其中一条的话,无论如何,最好先问问P5EE核心团队。 另外,本文档中的大部分,并不是强调正确的方法就是我们的方法。
Continue reading “Perl 编程格式指南”