由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - One more "keng" about Perl
相关主题
perl questionA question related to pipe
想实现一个简单的script language,用perl好做么?为什么在DLL code里不能cout或者printf ?
New "KENG" about Perl.Help: undefined symbol
请教一个perl的问题 (转载)python的shell
问高手一个PERL的简单程序高人帮我看看一个简单的script,为什么nohup有问题? (转载)
Re: 问个google面试题 (转载)Solaris CC compiler 如何从pipe读取文件,而不是从硬盘?
问一个Mandriva 2007 下Tix的问题[请教]命令行的重定向
问个socket编程中select()的问题。编写支持CGI的web服务器大致原理 (转载)
相关话题的讨论汇总
话题: print话题: perl话题: stdin话题: enter话题: string
进入Programming版参与讨论
1 (共1页)
I**********s
发帖数: 441
1
This is a bug of Perl's regular expression.
What will "(a)|(b)\1|(b)\2" match in "bb"?
The perl script below shows that "(a)|(b)\1|(b)\2" matches the empty string
"" before "bb", which can't be correct.
do {
print "Enter a regular expression: ";
$re = ;
chop($re);
do {
print "Enter a string: ";
$_ = ;
chop($_);
if (m/$re/) {
print "$re matches \"$&\" in $_\n"; # the matched part.
print "\$` = $`\n"; # the part of the string before the match.
print "\$'
1 (共1页)
进入Programming版参与讨论
相关主题
编写支持CGI的web服务器大致原理 (转载)问高手一个PERL的简单程序
C++ 屏幕输入问题Re: 问个google面试题 (转载)
python 问题问一个Mandriva 2007 下Tix的问题
Python有什么好的方法建two-way pipe?问个socket编程中select()的问题。
perl questionA question related to pipe
想实现一个简单的script language,用perl好做么?为什么在DLL code里不能cout或者printf ?
New "KENG" about Perl.Help: undefined symbol
请教一个perl的问题 (转载)python的shell
相关话题的讨论汇总
话题: print话题: perl话题: stdin话题: enter话题: string