免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1913 | 回复: 7
打印 上一主题 下一主题

请看一下代码的若干问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-24 19:43 |只看该作者 |倒序浏览
  1. #!/usr/bin/perl
  2. # slowcat - emulate a   s l o w   line printer
  3. # usage: slowcat [-DELAY] [files ...]
  4. $DELAY = ($ARGV[0] =~ /^-([.\d]+)/) ? (shift, $1) : 1;
  5. $| = 1;
  6. while (<>) {
  7.     for (split(//)) {
  8.         print;
  9.         select(undef,undef,undef, 0.005 * $DELAY);
  10.     }
  11. }
复制代码


[.\d] 这个匹配是不是有点问题?
(shift, $1)  这句是什么意思?

论坛徽章:
0
2 [报告]
发表于 2006-02-24 20:56 |只看该作者

回复 1楼 POLOGG 的帖子

$DELAY =
    (
        $ARGV[0] =~     # pattern match first argumet from input
        {  ^-           # match very beginning folowed by -
           ([.\d]+)     # match char "." or digits \d equals 0-9
                        # at least one
                        # save the match in $1  
         }x   
    )
    ? (shift, $1)       # if matches shift first match to $DELAY or use $1
                           
    : 1                 # else not mateched set $DELAY as 1.


Just for testing :
perl -le '$ARGV[0]='-.5';$DELAY=($ARGV[0]=~/^-([.\d]+)/)?(shift,$1):1; print $DELAY'
perl -le '$ARGV[0]='-1.5';$DELAY=($ARGV[0]=~/^-([.\d]+)/)?$1:1; print $DELAY'
perl -le '$ARGV[0]='-Foo.5';$DELAY=($ARGV[0]=~/^-([.\d]+)/)?$1:1; print $DELAY'

Best Regards,
ulmer

论坛徽章:
0
3 [报告]
发表于 2006-02-24 21:21 |只看该作者
. 似乎是包含 \d 的,所 [.\d]+ 跟 .+ 没区别吧。

论坛徽章:
0
4 [报告]
发表于 2006-02-24 21:48 |只看该作者
原帖由 fayland 于 2006-2-24 21:21 发表
. 似乎是包含 \d 的,所 [.\d]+ 跟 .+ 没区别吧。


yes,这里应该是[\.\d]+才对。

论坛徽章:
0
5 [报告]
发表于 2006-02-24 22:21 |只看该作者
原帖由 兰花仙子 于 2006-2-24 21:48 发表


yes,这里应该是[\.\d]+才对。


Becarefull with char "." in regex.
if char "." whithin [], the "." will be treated really as istself not any char!.
That means you can omit the "\" to escape it.
Of course, you can add "\," meaning for ".". And usually is better way to
confuse this case.

Best,
ulmer

论坛徽章:
0
6 [报告]
发表于 2006-02-25 00:27 |只看该作者
thanks. my mistake.

论坛徽章:
0
7 [报告]
发表于 2006-02-25 08:18 |只看该作者
原帖由 ulmer 于 2006-2-24 20:56 发表
? (shift, $1)       # if matches shift first match to $DELAY or use $1



我不是很清楚这句话的意思

我觉得这里没有必要用(shift, $1),为什么不直接用$1?

论坛徽章:
0
8 [报告]
发表于 2006-02-27 19:57 |只看该作者
原帖由 POLOGG 于 2006-2-25 08:18 发表



我不是很清楚这句话的意思

我觉得这里没有必要用(shift, $1),为什么不直接用$1?


Sorry. I've not clearly explained here.
Usually $1 is fully OK. but why shift() is used here, it's depended on
while(<>) loop mit "<>" used.

    while( <>) works included with ARGV[1] .. ARGV[$#ARGV]
    shift is meaning of "shift @ARGV".

Best, ulmer
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP