I have used \ at the end of shell scripts to avoid long lines, and improve code readability. But I cannot do it in Perl, what am I doing wrong ? Do I have to escape them in any way?

I mean something like:

my $dbh = DBI->connect("DBI:mysql:database=xxxxxxx;host=xxxxxt", "xxxx", "xxxxxx", \%dbattr) or die ("Bla bla bla bla");
link|improve this question
feedback

2 Answers

Perl statements are terminated separated by a semicolon ;, you don't need to write code on one line. Your example can be formatted as:

my $dbh = DBI->connect(
  "DBI:mysql:database=xxxxxxx;host=xxxxxt",
  "xxxx",
  "xxxxxx",
  \%dbattr
) or
  die ("Bla bla bla bla");

Or in any way you like.

You can also take a look at tools like perltidy to automatically beautify your code.

link|improve this answer
3  
minor nit, ; separates statements, it does not terminate them. the semicolon is not needed after each statement unless there is a following statement. – Eric Strom Sep 28 '11 at 15:14
@EricStrom: thanks I corrected the answer – Matteo Sep 28 '11 at 16:36
2  
+1 for perltidy ... – Mr.32 Sep 29 '11 at 6:35
feedback

There is no need to escape.

From perldoc perlsyn:

Perl is a free-form language, you can format and indent it however you like. Whitespace mostly serves to separate tokens, unlike languages like Python where it is an important part of the syntax:

my $dbh = 
 DBI->connect("DBI:mysql:database=xxxxxxx;host=xxxxxt", 
 "xxxx", "xxxxxx", \%dbattr
 ) 
 or die ("Bla bla bla bla");
link|improve this answer
7  
"Whitespace is allowed" - this is one of the biggest reasons why I will always prefer Perl over Python. – Jack Maney Sep 28 '11 at 14:42
feedback

Your Answer

 
or
required, but never shown

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