Help for this page

Select Code to Download


  1. or download this
    @a = ('a', 'b', 'c', 'd', 'e');
    
  2. or download this
    $b = @a;
    
  3. or download this
    $b = scalar @a;
    
  4. or download this
    $x = () = "abcdABCabA" =~ /a/ig; # Count A's regardless of case.