show/hide this revision's text 3 added 20 characters in body

I'm a java programmer who recently had to pick up perlPerl. The part I found hardest to get used to were all the special built in variables like $_ $~ $' and so on. Until you get used to them it's hard to keep track of which one does what.

and

And, of course, the use of regular expressions.

For example, I have to maintain code and when I saw the line below for the first time it was a little confusing. As a java programmer it looks like gibberish.

next unless "$_" !~ /^#/;
show/hide this revision's text 2 added 202 characters in body

I'm a java programmer who recently had to pick up perl. The part I found hardest to get used to were all the special built in variables like $_ $~ $' and so on. Until you get used to them it's hard to keep track of which one does what.

and of course the use of regular expressions.

For example, I have to maintain code and when I saw the line below for the first time it was a little confusing. As a java programmer it looks like gibberish.

next unless "$_" !~ /^#/;

show/hide this revision's text 1

I'm a java programmer who recently had to pick up perl. The part I found hardest to get used to were all the special built in variables like $_ $~ $' and so on. Until you get used to them it's hard to keep track of which one does what.

and of course the use of regular expressions.