In bash,seq 5 5 20 produce 5 10 15 20.

In Perl,1..5 produces 1 2 3 4 5; does it support step?

How to produce range with step in Perl?

link|improve this question
feedback

5 Answers

perldoc -f map is one way:

use warnings;
use strict;
use Data::Dumper;

my @ns = map { 5 * $_ } 1 .. 4;
print Dumper(\@ns);

__END__

$VAR1 = [
          5,
          10,
          15,
          20
        ];

See also: perldoc perlop

link|improve this answer
map 5 * $_, 1 .. 4 works without curly brackets. – TLP Jan 11 at 15:44
3  
Map is always very cool. The problem is that map is harder to read than a simple for as suggested by eugene y, and is actually more inefficient and possibly slower. This has to generate the entire list. Imagine a loop like this foreach my $i (map 5 * $_, 1..5000000) {. You have to generate that 1,000,000 member list before you can do the loop. However, for (my $i = 5; $i <= 5000000; $i += 5) { doesn't have to generate a list first before executing. – David W. Jan 11 at 17:26
@DavidW. : Nor does List::Gen's range function – Zaid Jan 11 at 18:14
@DavidW. I think that for loops also generate the list beforehand. It looks like it does not, but for does use a list context for its arguments. A while loop does not, however. – TLP Jan 11 at 18:54
1  
@TLP - There are two separate for loop formats. The Bourne shell style (which I'll call the foreach loop) and the C style (which I'll call the for loop). The foreach variant does generate a list first, but not the for variant. Yes, I know that foreach` and for are interchangeable as keywords. The point is that the loop Eugene Y used in his example doesn't generate a list first. – David W. Jan 12 at 1:26
show 7 more comments
feedback

The range operator in Perl doesn't support steps. You could use a for loop instead:

for (my $i = 5; $i <= 20; $i += 5) {
    print "$i\n";
}
link|improve this answer
3  
+1: This is a much better solution than map. I use to write in APL and the joke was is that APL is a Write-Only language because the code was always impossible to read. Map is neat, but it can have that Write Only quality to it. Looking at the for loop, and I immediately see what my loop does. I can see it starts at 5. I can see it goes to 20. And, I can see it takes steps of 5. With map, I have to decode it first in order to understand it. – David W. Jan 11 at 17:18
as written this is of course fine, but it is worth noting that if floats are used in the range, then you can run into compound floating point errors as the range gets longer. – Eric Strom Jan 12 at 2:21
feedback

The List::Gen range function does this:

use strict;
use warnings;
use feature 'say';
use List::Gen;

my $range = range 5, 20, 5;

say for @$range;      # 5
                      # 10
                      # 15
                      # 20

say while <$range>;   # TIMT1WTDI
$range->say;          # TAMT2WTDI, v.0.974
say $range->str;      # TAMT3WTDI, v.0.974

my $by_fives = <5 .. 20 by 5>;

say while <$by_fives>;     #TAMT4WTDI
<5 .. * by 5>->say( 4 );   #TAMT5WTDI
link|improve this answer
+1 I knew there must be a module for this, but I couldn't find it. Good work. – TLP Jan 11 at 18:55
+1 I couldn't remember the name of the module! – Bill Ruppert Jan 11 at 20:22
when glob is imported (as with a bare use List::Gen;) then you can write it as <5 .. 20 by 5>, <5 .. 20 += 5>, or even <5..20+5> if you are golfing. I find these all a bit more expressive than the three argument range, but I guess you could also write range 5 => 20, +5 to annotate the arguments. It is also useful to note that range is fully lazy (elements calculated on demand) so you can write an infinite range <5 .. * by 5> and then take any slices of the range that you need. – Eric Strom Jan 12 at 2:08
@EricStrom : Great module! I'm trying to capture the ways you've mentioned in my answer. Why does say while < 5 .. 20 by 5 >; go into an infinite loop? – Zaid Jan 12 at 3:30
s/infinite loop/not work/ – Zaid Jan 12 at 3:42
show 1 more comment
feedback

Not as good as toolic

use warnings;
use strict;

my @ns;

for my $n (1..4){
    push(@ns, $n*5);
}
link|improve this answer
feedback

I wrote Acme::Range::Module a while back as a gag module - hence the Acme:: namespace - but it does do what you want and has tests and is supported. Here's the example code:

use Acme::Globule qw( Range );

foreach (<10..1>) {
  print "$_... ";
}
print "Lift-off!\n";

# put down that crack pipe...
sub my_keys(\%) {
  my @hash = %{ $_[0] };
 return @hash[ glob("0,2..$#hash") ];
}

sub my_values(\%) {
  my @hash = %{ $_[0] };
 return @hash[ glob("1,3..$#hash") ];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.