Hacker News new | past | comments | ask | show | jobs | submit login

No need to copy and then replace:

  my $a =  'Perl';
  my $b =~ s/pe/ea/ir;



Doesn't work. You don't assign anything to $b, so it's undef:

  % perl -MData::Dumper=Dumper -e 'my $a = 'Perl'; my $b =~ s/pe/ea/ir; print Dumper $b;'
  $VAR1 = undef;
You probably mean:

  my $a = 'Perl';
  my $b = $a =~ s/pe/ea/ir;
Anyway, thank you for the /r modifier, it didn't know what it did, since there's no example in perlre(1).


You're right, that's exactly what I meant!

I'm surprised there's no example in perlre(1); perhaps I can get that corrected.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: