Questions tagged «perl»

Perl是一种过程性,高级,通用,动态编程语言,以其对正则表达式和字符串解析功能的本机支持而闻名。通常,请使用此标签来回答有关Perl的问题。对于与新的(但相关的)语言Raku(以前称为“ Perl 6”)有关的内容,请使用raku标记。对于其他语言的Perl样式正则表达式,请使用regex标记;如果基于PCRE库,则使用pcre标记。

2
Perl的Glob有限制吗?
我正在运行以下期望返回5个字符的字符串: while (glob '{a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}'x5) { print "$_\n"; } 但它仅返回4个字符: anbc anbd anbe anbf anbg ... 但是,当我减少列表中的字符数时: while (glob '{a,b,c,d,e,f,g,h,i,j,k,l,m}'x5) { print "$_\n"; } 它正确返回: aamid aamie aamif aamig aamih ... 有人可以告诉我我在这里缺少什么吗,是否有某种限制?还是有办法解决? 如果有什么不同,则在perl 5.26和中都返回相同的结果perl 5.28
9 perl 

2
在Ubuntu和Perl 5.26中安装Raku(Perl 6)
我很想学习Raku(Perl 6)及其语法。 我的Ubuntu计算机上已经安装了Perl 5。 vinod@ubuntu-s-1vcpu-1gb-nyc1-01:~$ perl -v This is perl 5, version 26, subversion 1 (v5.26.1) built for x86_64-linux-gnu-thread-multi (with 67 registered patches, see perl -V for more detail) Copyright 1987-2017, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.