Perl common usage

本文通过具体示例介绍了Perl语言的基础用法,包括正则表达式的匹配、字符串替换、数组操作及哈希表应用等核心功能,并展示了文件读取、条件判断等常见任务的实现方式。

#!/usr/bin/perl -w
use strict;

if ("helloworld" =~ / world/)
{
    print "match"
}
else
{
    print "bad."
}
print "/n";

# extract matches
my $time = "09:30:28";
my ($h, $m, $s) = ($time =~ /(/d/d):(/d/d):(/d/d)/);

print $h;
print $m;
print $s;
print "/n";

# replace
my $line = "hello world";
$line =~ s/world/perl/;
print $line;
print "/n";

#split
my @dict;
my $word_list = "apple banana orange";
@dict = split(//s+/, $word_list);
foreach(@dict) { print $_."/n"; };

# hash
my %hash1 = ();
foreach(@dict)
{
    $hash1{$_} = $_."_value";
}

# print hash
print "$hash1{$_} = $_/n" for keys %hash1;


# read file
print "content of ".$0."/n";
my @lines = ();
open(H1, "<$0") or die "fail to open".$0;
@lines = <H1>;
#print @lines;
print "line count = ".scalar(@lines)."/n";
close(H1);

# grep
my @odds = grep { $_ % 2 } 1..100;
print @odds;
print "/n";

# print time
print scalar localtime;

Error downloading packages: perl-Storable-2.45-3.el7.x86_64: [Errno 256] No more mirrors to try. 4:perl-macros-5.16.3-297.el7.x86_64: [Errno 256] No more mirrors to try. perl-Scalar-List-Utils-1.27-248.el7.x86_64: [Errno 256] No more mirrors to try. 4:perl-libs-5.16.3-297.el7.x86_64: [Errno 256] No more mirrors to try. 2:vim-filesystem-7.4.629-7.el7.x86_64: [Errno 256] No more mirrors to try. 1:perl-Pod-Escapes-1.04-297.el7.noarch: [Errno 256] No more mirrors to try. 2:vim-enhanced-7.4.629-7.el7.x86_64: [Errno 256] No more mirrors to try. perl-Text-ParseWords-3.29-4.el7.noarch: [Errno 256] No more mirrors to try. perl-threads-1.87-4.el7.x86_64: [Errno 256] No more mirrors to try. perl-Encode-2.51-7.el7.x86_64: [Errno 256] No more mirrors to try. perl-threads-shared-1.43-6.el7.x86_64: [Errno 256] No more mirrors to try. 1:perl-Pod-Simple-3.28-4.el7.noarch: [Errno 256] No more mirrors to try. perl-Time-Local-1.2300-2.el7.noarch: [Errno 256] No more mirrors to try. perl-Socket-2.010-5.el7.x86_64: [Errno 256] No more mirrors to try. perl-podlators-2.5.1-3.el7.noarch: [Errno 256] No more mirrors to try. perl-File-Temp-0.23.01-3.el7.noarch: [Errno 256] No more mirrors to try. perl-PathTools-3.40-5.el7.x86_64: [Errno 256] No more mirrors to try. 4:perl-Time-HiRes-1.9725-3.el7.x86_64: [Errno 256] No more mirrors to try. perl-HTTP-Tiny-0.033-3.el7.noarch: [Errno 256] No more mirrors to try. perl-constant-1.27-2.el7.noarch: [Errno 256] No more mirrors to try. 4:perl-5.16.3-297.el7.x86_64: [Errno 256] No more mirrors to try. perl-Exporter-5.68-3.el7.noarch: [Errno 256] No more mirrors to try. perl-Getopt-Long-2.40-3.el7.noarch: [Errno 256] No more mirrors to try. 2:vim-common-7.4.629-7.el7.x86_64: [Errno 256] No more mirrors to try. 1:perl-parent-0.225-244.el7.noarch: [Errno 256] No more mirrors to try. perl-Carp-1.26-244.el7.noarch: [Errno 256] No more mirrors to try. perl-File-Path-2.09-2.el7.noarch: [Errno 256] No more mirrors to try. perl-Filter-1.49-3.el7.x86_64: [Errno 256] No more mirrors to try. perl-Pod-Perldoc-3.20-4.el7.noarch: [Errno 256] No more mirrors to try. perl-Pod-Usage-1.63-3.el7.noarch: [Errno 256] No more mirrors to try.
最新发布
06-17
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值