学习perl的reverse,sort,scalar

前端之家收集整理的这篇文章主要介绍了学习perl的reverse,sort,scalar前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 学习perl的reverse,sort,scalar,记录一下。

  1. [root@OTRS perl]# more reverse_sort_scalar.pl
  2. #!/usr/bin/perl -w
  3. use strict;
  4. #reverse
  5. my @array_reverse = 1..3;
  6. my @array_ed = reverse(@array_reverse);
  7. print "数组的值为1 2 3,reverse反转数组的值为: ","@array_ed\n";
  8. #sort
  9. my @array_sort = qw/c b a/;
  10. my @sorted = sort@array_sort;
  11. print "数组的值为c b a,sort排序后为: "@sorted\n#scalar强制指定标量上下文。
  12. my @array_scalar = qw/a b c/;
  13. print "数组的值为abc,scalar指出数组的个数为:scalar@array_scalar,0); ">"\n";
  14. [root@OTRS perl]# perl reverse_sort_scalar.pl
  15. 数组的值为1 2 3,reverse反转数组的值为: 3 2 1
  16. 数组的值为c b a,sort排序后为: a b c
  17. 数组的值为abc,scalar指出数组的个数为:3

转载自:http://baiqiuyi.com/linux/perl_reverse_sort_scalar.html?replytocom=1985小桥流水人家

@H_893_404@

猜你在找的Perl相关文章